Forked from matchaxnb/_etc_avahi_services_samba.service
Created
September 18, 2018 11:56
-
-
Save BertMueller18/d7c04766ff30c9df1212a40a88b40d35 to your computer and use it in GitHub Desktop.
Samba timemachine config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone='no'?> | |
<!DOCTYPE service-group SYSTEM "avahi-service.dtd"> | |
<service-group> | |
<name replace-wildcards="yes">%h</name> | |
<service> | |
<type>_adisk._tcp</type> | |
<txt-record>sys=waMa=0,adVF=0x100</txt-record> | |
<txt-record>dk0=adVN=Time Capsule,adVF=0x82</txt-record> | |
</service> | |
<service> | |
<type>_smb._tcp</type> | |
<port>445</port> | |
</service> | |
</service-group> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
wins support = yes | |
workgroup = WORKGROUP | |
netbios name = SAMBA | |
vfs objects = acl_xattr fruit | |
map acl inherit = yes | |
store dos attributes = yes | |
security = user | |
valid users = @shareaccess | |
username map = /etc/samba/users.map | |
passdb backend = tdbsam:/etc/samba/passdb.tdb | |
guest ok = no | |
read only = no | |
# Time Machine | |
durable handles = yes | |
kernel oplocks = no | |
kernel share modes = no | |
posix locking = no | |
fruit:advertise_fullsync = true | |
smb2 leases = yes | |
# Security | |
client ipc max protocol = default | |
client max protocol = default | |
server max protocol = SMB3 | |
client ipc min protocol = default | |
client min protocol = CORE | |
server min protocol = SMB2 | |
[Time Capsule] | |
path = /tank/Backups | |
browseable = Yes | |
vfs objects = catia fruit streams_xattr | |
fruit:aapl = yes | |
read only = No | |
inherit acls = Yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment