summaryrefslogtreecommitdiffstats
path: root/acf.conf
diff options
context:
space:
mode:
authorNathan Angelacos <nangel@tetrasec.net>2008-09-29 20:16:06 +0000
committerNathan Angelacos <nangel@tetrasec.net>2008-09-29 20:16:06 +0000
commit06f12e51f6a31a06008a482058107f1511ba2ebf (patch)
tree6bf40f8750ed81c57d87ed0b0df9abeaea6bf300 /acf.conf
parent6653bf15788592e34d1e5acce850142c15e52b46 (diff)
downloadacf-core-06f12e51f6a31a06008a482058107f1511ba2ebf.tar.bz2
acf-core-06f12e51f6a31a06008a482058107f1511ba2ebf.tar.xz
Auditing functions in place
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1536 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'acf.conf')
-rw-r--r--acf.conf21
1 files changed, 20 insertions, 1 deletions
diff --git a/acf.conf b/acf.conf
index d0dcecd..8246e04 100644
--- a/acf.conf
+++ b/acf.conf
@@ -1,7 +1,26 @@
+# Configuration file for Alpine Configuration Framework
+
+
+# Directories where the application resides
appdir=/usr/share/acf/app/
libdir=/usr/share/acf/lib/
+
+# sessiondir is where the session state files are stored
sessiondir=/tmp/
+
+# ACF is skinnable - these specifiy the active skin
skindir=/skins/
-# ice or snow
skin=alps
+
+# The login system credentials file
passfile=/etc/acf/passwd
+
+
+# Auditing can be done before and/or after a commit
+# if the controller supports it.
+# ${TEMPFILE} and ${CONFFILE} are used precommit
+# only ${CONFFILE} has any meaning postcommit
+
+#audit_precommit=diff -u ${CONFFILE} ${TEMPFILE} >>/var/log/${self.conf.controller}.log 2>/dev/null
+#audit_postcommit=echo ${self.sessiondata.userinfo.userid} made a change to ${CONFFILE} >>/var/log/acf.log
+