summaryrefslogtreecommitdiff
path: root/tests/sudoers/sudoers-create.pp
blob: 2d1d95ff8e595b955e1159cf71d2a8e555013db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sudoers { 'BLAH1':
  target => '/tmp/sudoers',
  ensure => present,
  sudo_alias => 'Cmnd_Alias',
  items => ['/usr/bin/which', '/bin/touch'],
  type => 'alias',
}
sudoers { 'BLAH2':
  target => '/tmp/sudoers',
  ensure => present,
  sudo_alias => 'Host_Alias',
  items => ['localhost', 'localhost.localdomain'],
  type => 'alias',
}
sudoers { 'BLAH3':
  target => '/tmp/sudoers',
  ensure => present,
  users => 'dan',
  hosts => 'localhost',
  commands => ['/bin/true', '/bin/false'],
  type => 'user_spec',
}