style
This commit is contained in:
parent
bf7c40b7f4
commit
d996ff9797
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue