aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorjonoterc <jon_obuchowski@terc.edu>2013-10-10 17:30:15 -0400
committerAdam Jahn <ajjahn@gmail.com>2014-01-10 18:15:58 -0500
commite22aac5672174c77500e32984b7a139a1d0ac931 (patch)
tree72ae410065b9ce080a3434f7aa090cab234c223c /manifests
parente8be6764c89c7670e950db74551f94b138661ae2 (diff)
downloadpuppet-samba-e22aac5672174c77500e32984b7a139a1d0ac931.tar.gz
puppet-samba-e22aac5672174c77500e32984b7a139a1d0ac931.tar.bz2
correcting read_only configuration application
"read only" option was not removable due to "read_only" misspelling
Diffstat (limited to 'manifests')
-rw-r--r--manifests/server/share.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/server/share.pp b/manifests/server/share.pp
index 2e0c0ba..d9eb331 100644
--- a/manifests/server/share.pp
+++ b/manifests/server/share.pp
@@ -95,7 +95,7 @@ define samba::server::share($ensure = present,
$read_only ? {
true => "set \"${target}/read only\" yes",
false => "set \"${target}/read only\" no",
- default => "rm \"${target}/read_only\"",
+ default => "rm \"${target}/read only\"",
},
$public ? {
true => "set \"${target}/public\" yes",