aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-20 22:28:26 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-20 22:28:26 +0300
commit14ab3decc1954837f31a608648a95375247330f4 (patch)
treef421a5f9c829bd60d67b2a6cdc6fd978ab007743
parentadfb1fc67b3d8be4385114d94d5971d71a83d504 (diff)
downloadpuppet-14ab3decc1954837f31a608648a95375247330f4.tar
puppet-14ab3decc1954837f31a608648a95375247330f4.tar.gz
puppet-14ab3decc1954837f31a608648a95375247330f4.tar.bz2
puppet-14ab3decc1954837f31a608648a95375247330f4.tar.xz
puppet-14ab3decc1954837f31a608648a95375247330f4.zip
fix up: use part should not be expanded
-rw-r--r--modules/restrictshell/manifests/allow.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/restrictshell/manifests/allow.pp b/modules/restrictshell/manifests/allow.pp
index 40028f75..cb1fd9a2 100644
--- a/modules/restrictshell/manifests/allow.pp
+++ b/modules/restrictshell/manifests/allow.pp
@@ -2,6 +2,6 @@ define restrictshell::allow {
include shell
file { "/etc/membersh-conf.d/allow_${name}.pl":
mode => '0755',
- content => "\${use}_${name} = 1;\n",
+ content => "\$use_${name} = 1;\n",
}
}