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

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