aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'
}
}