dperson / samba

Samba docker container
GNU Affero General Public License v3.0
1.5k stars 509 forks source link

Build with latest alpine: Invalid option -FS: unknown option #413

Open Vincent-HD opened 2 years ago

Vincent-HD commented 2 years ago

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 👍🎉

tigerblue77 commented 1 year ago

Fixed in #405