37 lines
831 B
Django/Jinja
37 lines
831 B
Django/Jinja
#
|
|
# Managed by Salt
|
|
#
|
|
# run testparm -s after making changes to validate them
|
|
|
|
[global]
|
|
workgroup = WORKGROUP
|
|
log file = /var/log/samba/log.%m
|
|
max log size = 1000
|
|
logging = file
|
|
panic action = /usr/share/samba/panic-action %d
|
|
server role = standalone server
|
|
obey pam restrictions = yes
|
|
unix password sync = no
|
|
map to guest = bad user
|
|
usershare max shares = 0
|
|
encrypt passwords = yes
|
|
smb encrypt = required
|
|
|
|
{% if salt.pillar.get('samba:enable_homes', false) %}
|
|
[homes]
|
|
comment = Home Directories
|
|
browseable = no
|
|
read only = yes
|
|
create mask = 0700
|
|
directory mask = 0700
|
|
valid users = %S
|
|
{% endif %}
|
|
|
|
{% for name, conf in salt.pillar.get('samba:shares', {}).items() %}
|
|
[{{ name }}]
|
|
path = {{ conf['path'] }}
|
|
valid users = {{ conf['users'] }}
|
|
read only = {{ conf['readonly'] }}
|
|
{% endfor %}
|
|
|