From: David Sheldon Date: Fri, 9 Oct 2015 17:25:29 +0000 (+0100) Subject: Fix the rest of the options with _ in X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=47c02047d9924bf2a62d8f099e28e6366b60b5fb;p=puppet-samba.git Fix the rest of the options with _ in Having read man smb.conf, none of these options should have _ in the resulting option name. --- 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;