aboutsummaryrefslogtreecommitdiff
path: root/manifests/utmp/disable.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-12-15 10:26:51 +0100
committerintrigeri <intrigeri@boum.org>2010-12-15 10:28:25 +0100
commitf35c84dc309a09ed60b56d37a206c7c59ab6f354 (patch)
tree1c349432d2fd37a3987494f9d98632b35951b89b /manifests/utmp/disable.pp
parente6c049751e571e0e86be3281ac11a669499ca0b2 (diff)
downloadpuppet-loginrecords-f35c84dc309a09ed60b56d37a206c7c59ab6f354.tar.gz
puppet-loginrecords-f35c84dc309a09ed60b56d37a206c7c59ab6f354.tar.bz2
Explicitly prevent removed login records files to be backup'd.
The whole idea of this module is to avoid keeping the information that is usually stored in these files, rather than moving it to a Puppet fileserver.
Diffstat (limited to 'manifests/utmp/disable.pp')
-rw-r--r--manifests/utmp/disable.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/utmp/disable.pp b/manifests/utmp/disable.pp
index 5b4ce07..d01d44b 100644
--- a/manifests/utmp/disable.pp
+++ b/manifests/utmp/disable.pp
@@ -1,5 +1,6 @@
class loginrecords::utmp::disable inherits loginrecords::utmp::enable {
File[$utmp_file]{
- ensure => 'absent'
+ ensure => 'absent',
+ backup => false,
}
}