Skip to content

Commit

Permalink
added file that tests three distinct sudoers types
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Bode committed Apr 6, 2010
1 parent 550e760 commit 3272916
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests/sudoers-distinct.pp
@@ -0,0 +1,30 @@
# this will work for all resource types of sudoerd
resources{'sudoers':
purge => true,
}
sudo::alias{'BLAH1':
#target => '/tmp/sudo',
sudo_alias => 'Cmnd_Alias',
items => ['/bin/blah', '/bin/blah4', '/bin/blah2'],
# require => sudoers['BHAH2']
}
sudo::spec{'blah4':
#target => '/tmp/sudoers',
users => 'dan',
hosts => 'localhost',
commands => '/bin/true',
}
sudo::alias{'BLAH3':
sudo_alias => 'Cmnd_Alias',
items => ['/bin/blah', '/bin/blah4', '/bin/blah2'],
before => Sudoers['BHAH2']
}
sudo::alias{'BHAH2':
#target => '/tmp/sudoers',
sudo_alias => 'Host_Alias',
items => ['blah2', 'blah3', 'blah4', 'blah5'],
# require => Sudoers['blah4'],
}
sudo::defaults{'Defaults@host':
parameters => ['x=y', 'one=1', 'two=2'],
}

0 comments on commit 3272916

Please sign in to comment.