/[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 219 - (show annotations) (download)
Tue Nov 9 23:13:19 2010 UTC (13 years, 5 months ago) by boklm
File size: 332 byte(s)
fix permissions on sudoers files
1 class sudo {
2 package { sudo:
3 ensure => installed;
4 }
5
6 file { "/etc/sudoers.d":
7 ensure => directory,
8 mode => 711,
9 owner => root,
10 group => root,
11 }
12
13 file { "/etc/sudoers":
14 ensure => present,
15 owner => root,
16 group => root,
17 mode => 440,
18 content => template("sudo/sudoers")
19 }
20 }

  ViewVC Help
Powered by ViewVC 1.1.30