blob: 95c663d07b3922b03e937a01ae2ab8fe4748326a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# manage the btmp file
class loginrecords::btmp::enable(
$btmp_file = '/var/log/btmp'
){
file{$loginrecords::btmp::enable::btmp_file:
ensure => 'present',
owner => 'root',
group => 'utmp',
mode => '0660';
}
}
|