You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 👍🎉
The text was updated successfully, but these errors were encountered:
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 noteTo fix it you need to remove
S
option fromsamba.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 👍🎉
The text was updated successfully, but these errors were encountered: