aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-20 11:21:08 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-20 11:21:08 +0300
commitc25c148826abe0dc09eeaa3ebe2c927b44708f2f (patch)
treebb800035f578b64c7603b358012f6bc9a323637d
parent095760e1f1e4b51d2ec4233263578bf3561e7ffe (diff)
downloadpuppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar
puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.gz
puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.bz2
puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.tar.xz
puppet-c25c148826abe0dc09eeaa3ebe2c927b44708f2f.zip
lint fixes for restrictshell
-rw-r--r--modules/restrictshell/manifests/allow.pp4
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",
}
}