samba
samba copied to clipboard
Build with latest alpine: Invalid option -FS: unknown option
For those that are building the image by themselves, there is a problem in Samba 4.15.0, they removed the -S command line option. see @Patch note
Options removed:
-e|--encrypt
-C removed from --use-winbind-ccache
-i removed from --netbios-scope
-S|--signing
To fix it you need to remove S option from samba.sh at the end of it:
From: exec ionice -c 3 smbd -FS --no-process-group </dev/null
To: exec ionice -c 3 smbd -F --no-process-group </dev/null
And you should be good 👍🎉
Fixed in #405