aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-10-17 20:13:20 +0200
committerintrigeri <intrigeri@boum.org>2010-10-17 20:13:20 +0200
commit7fcec706fd74b5f958e74d7960640ff5ec8b19be (patch)
tree2fbe542b5b7c9bcd88998736f0b84422234ce929 /manifests/init.pp
parent96a39b816a4922cb9e710e6bdd044125708d8411 (diff)
downloadpuppet-loginrecords-7fcec706fd74b5f958e74d7960640ff5ec8b19be.tar.gz
puppet-loginrecords-7fcec706fd74b5f958e74d7960640ff5ec8b19be.tar.bz2
Support disabling btmp and wtmp.
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6826c32..e575dee 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -3,12 +3,18 @@ import "*.pp"
class loginrecords {
# Default settings
+ if $disable_btmp == '' {
+ $disable_btmp = true
+ }
if $disable_faillog == '' {
$disable_faillog = true
}
if $disable_lastlog == '' {
$disable_lastlog = true
}
+ if $disable_wtmp == '' {
+ $disable_wtmp = true
+ }
# Include main class
case $kernel {