aboutsummaryrefslogtreecommitdiff
path: root/manifests/utmp/unprotect.pp
blob: 54d821b30fda12579ac76e66838845f6a0279a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
# manage the utmp file
class loginrecords::utmp::unprotect(
  $utmp_file = '/var/run/utmp'
){
  file{$loginrecords::utmp::unprotect::utmp_file:
    ensure  => 'present',
    owner   => 'root',
    group   => 'utmp',
    mode    => '0664';
  }
}