bundlewrap/bundles/samba/files/smb.conf
2022-09-13 02:20:43 +02:00

16 lines
383 B
Text

[global]
workgroup = WORKGROUP
logging = syslog
panic action = /usr/share/samba/panic-action %d
server role = standalone server
obey pam restrictions = yes
unix password sync = no
server min protocol = SMB3
server smb encrypt = required
% for name, confs in shares.items():
[${name}]
% for key, value in confs.items():
${key} = ${value}
% endfor
% endfor