From: mh Date: Thu, 9 Dec 2010 17:32:49 +0000 (+0100) Subject: fix typo X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e6c049751e571e0e86be3281ac11a669499ca0b2;p=puppet-loginrecords.git fix typo --- 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' } }