This commit is contained in:
Antoine Beaupré 2013-04-24 16:04:45 -04:00
parent bf7c40b7f4
commit d996ff9797

View file

@ -1,10 +1,10 @@
define sudo::user-alias ($ensure = 'present', $members) {
# this is 00-prefixed so that it's defined before the other definitions
file { "/etc/sudoers.d/00-user_alias-$title":
file { "/etc/sudoers.d/00-user_alias-${title}":
ensure => $ensure,
owner => root,
group => root,
mode => 440,
content => "# THIS FILE IS MANAGED BY PUPPET !\n\nUser_Alias $name = $members\n",
content => "# THIS FILE IS MANAGED BY PUPPET !\n\nUser_Alias ${name} = ${members}\n",
}
}