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