summaryrefslogtreecommitdiffstats
path: root/tozt/sudo/manifests/init.pp
blob: 8a3806009524a7b06eedab9db0550983a4e7f53c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class sudo {
  package { "sudo":
    ensure => 'installed';
  }

  file { "/etc/sudoers.d/wheel":
    ensure => present,
    content => '%wheel ALL=(ALL) ALL';
  }
}