/[adm]/puppet/modules/sudo/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/sudo/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 215 - (show annotations) (download)
Tue Nov 9 22:48:04 2010 UTC (13 years, 5 months ago) by boklm
File size: 332 byte(s)
add sudo module
1 class sudo {
2 package { sudo:
3 ensure => installed;
4 }
5
6 file { "/etc/sudoers.d":
7 ensure => directory,
8 mode => 700,
9 owner => root,
10 group => root,
11 }
12
13 file { "/etc/sudoers":
14 ensure => present,
15 owner => root,
16 group => root,
17 mode => 600,
18 content => template("sudo/sudoers")
19 }
20 }

  ViewVC Help
Powered by ViewVC 1.1.30