From dc369a6bad071a777e0931f97a409fda869c5a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Tue, 16 Jan 2018 13:46:08 +0100 Subject: [PATCH] move audit rules default path variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- helper_lib.sh | 3 +++ 1 file changed, 3 insertions(+) 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