aboutsummaryrefslogtreecommitdiff
path: root/manifests/btmp
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/btmp
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/btmp')
-rw-r--r--manifests/btmp/disable.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/btmp/disable.pp b/manifests/btmp/disable.pp
index 7a27126..f32d36a 100644
--- a/manifests/btmp/disable.pp
+++ b/manifests/btmp/disable.pp
@@ -1,6 +1,7 @@
class loginrecords::btmp::disable inherits loginrecords::btmp::enable {
File[$btmp_file]{
- ensure => 'absent'
+ ensure => 'absent',
+ backup => false,
}
}