From d491ac3a2199cb1f3cdcd4f2f6b3d877b3a65a65 Mon Sep 17 00:00:00 2001 From: Yaakov Nemoy Date: Sun, 28 Sep 2008 10:29:00 -0400 Subject: Make the shell functions a bit more modular for scripting --- modules/audit.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/audit.py (limited to 'modules/audit.py') diff --git a/modules/audit.py b/modules/audit.py new file mode 100644 index 0000000..5e89f53 --- /dev/null +++ b/modules/audit.py @@ -0,0 +1,9 @@ + + +class Audit: + """ Perform various code audits on a specified Pkg """ + + tools = ['flawfinder', 'rats'] + + def __init__(self, pkg): + """ @param pkg: a Pkg instance """ -- cgit