2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 18:17:09 +00:00
apparmor/Tools/aa-autodep.py

15 lines
396 B
Python
Raw Normal View History

#!/usr/bin/python
import argparse
from apparmor.tools import *
parser = argparse.ArgumentParser(description='')
parser.add_argument('--force', type=str, help='path to profiles')
parser.add_argument('-d', type=str, help='path to profiles')
parser.add_argument('program', type=str, nargs='+', help='name of program')
args = parser.parse_args()
autodep = aa_tools('autodep', args)
autodep.act()