diff --git a/helper_lib.sh b/helper_lib.sh index 6dea993..6e675b4 100644 --- a/helper_lib.sh +++ b/helper_lib.sh @@ -3,6 +3,9 @@ # Returns the absolute path of a given string abspath () { case "$1" in /*)printf "%s\n" "$1";; *)printf "%s\n" "$PWD/$1";; esac; } +# Audit rules default path +auditrules="/etc/audit/audit.rules" + # Compares versions of software of the format X.Y.Z do_version_check() { [ "$1" = "$2" ] && return 10