aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorDavid Sheldon <dave-github@earth.li>2015-10-09 18:25:29 +0100
committerDavid Sheldon <dave-github@earth.li>2015-10-09 18:25:29 +0100
commit47c02047d9924bf2a62d8f099e28e6366b60b5fb (patch)
treeb4099675d98ef691cfc15d175817b2fbe3527f33 /manifests
parent590d55da8dc735a9f955f6c9df7a424dd8609033 (diff)
downloadpuppet-samba-47c02047d9924bf2a62d8f099e28e6366b60b5fb.tar.gz
puppet-samba-47c02047d9924bf2a62d8f099e28e6366b60b5fb.tar.bz2
Fix the rest of the options with _ in
Having read man smb.conf, none of these options should have _ in the resulting option name.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/server.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/server.pp b/manifests/server.pp
index b4e9955..a73ad99 100644
--- a/manifests/server.pp
+++ b/manifests/server.pp
@@ -45,14 +45,14 @@ class samba::server($interfaces = '',
'unix password sync': value => $unix_password_sync;
'netbios name': value => $netbios_name;
'workgroup': value => $workgroup;
- 'socket_options': value => $socket_options;
+ 'socket options': value => $socket_options;
'deadtime': value => $deadtime;
'keepalive': value => $keepalive;
'load printers': value => $load_printers;
'printing': value => $printing;
- 'printcap_name': value => $printcap_name;
+ 'printcap name': value => $printcap_name;
'map to guest': value => $map_to_guest;
- 'disable_spoolss': value => $disable_spoolss;
+ 'disable spoolss': value => $disable_spoolss;
'kernel oplocks': value => $kernel_oplocks;
'pam password change': value => $pam_password_change;
'os level': value => $os_level;