aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-12-09 18:32:49 +0100
committermh <mh@immerda.ch>2010-12-09 18:32:49 +0100
commite6c049751e571e0e86be3281ac11a669499ca0b2 (patch)
tree262f0fbb2d6901349543b885d221cb450c046014
parent87ac7825be98a2c9b2dc3d3dcf9e277ec2a364e9 (diff)
downloadpuppet-loginrecords-e6c049751e571e0e86be3281ac11a669499ca0b2.tar.gz
puppet-loginrecords-e6c049751e571e0e86be3281ac11a669499ca0b2.tar.bz2
fix typo
-rw-r--r--manifests/utmp/enable.pp2
-rw-r--r--manifests/wtmp/disable.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/utmp/enable.pp b/manifests/utmp/enable.pp
index ee47b94..1003182 100644
--- a/manifests/utmp/enable.pp
+++ b/manifests/utmp/enable.pp
@@ -1,7 +1,7 @@
class loginrecords::utmp::enable(
$utmp_file = '/var/run/utmp'
){
- file {$utmp_file:
+ file{$utmp_file:
ensure => 'present',
owner => 'root', group => 'utmp', mode => 660;
}
diff --git a/manifests/wtmp/disable.pp b/manifests/wtmp/disable.pp
index c974cd9..e3d5228 100644
--- a/manifests/wtmp/disable.pp
+++ b/manifests/wtmp/disable.pp
@@ -1,5 +1,5 @@
class loginrecords::wtmp::disable inherits loginrecords::wtmp::enable {
- File[$wtmp_filer]{
+ File[$wtmp_file]{
ensure => 'absent'
}
}