diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 11:21:08 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 11:21:08 +0300 |
commit | c25c148826abe0dc09eeaa3ebe2c927b44708f2f (patch) | |
tree | bb800035f578b64c7603b358012f6bc9a323637d /modules | |
parent | 095760e1f1e4b51d2ec4233263578bf3561e7ffe (diff) | |
download | puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.gz puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.bz2 puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.xz puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.zip |
lint fixes for restrictshell
Diffstat (limited to 'modules')
-rw-r--r-- | modules/restrictshell/manifests/allow.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/restrictshell/manifests/allow.pp b/modules/restrictshell/manifests/allow.pp index 361ee4a7..40028f75 100644 --- a/modules/restrictshell/manifests/allow.pp +++ b/modules/restrictshell/manifests/allow.pp @@ -1,7 +1,7 @@ define restrictshell::allow { include shell - file { "/etc/membersh-conf.d/allow_$name.pl": + file { "/etc/membersh-conf.d/allow_${name}.pl": mode => '0755', - content => "\$use_$name = 1;\n", + content => "\${use}_${name} = 1;\n", } } |