aboutsummaryrefslogtreecommitdiff
path: root/manifests/wtmp/disable.pp
blob: f98e201682b69e37324d88fb548f7820cb3e807b (plain)
1
2
3
4
5
6
7
# ensure that wtmp is not on the system
class loginrecords::wtmp::disable inherits loginrecords::wtmp::enable {
  File[$loginrecords::wtmp::enable::wtmp_file]{
    ensure => 'absent',
    backup => false,
  }
}