1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

events:50.samba: wipe the local part of the serverid db before starting winbind/smnd/nmbd

This is necessary for the new serverid approach.

Michael

(This used to be ctdb commit 8956f32e571093db7f285b83e4dd32960f8afc7c)
This commit is contained in:
Michael Adam 2010-03-26 17:33:51 +01:00 committed by Ronnie Sahlberg
parent 8ed2e059f5
commit df77489477

View File

@ -53,7 +53,7 @@ start_samba() {
}
}
# restart the winbind service
# make sure winbind is not already started
check_ctdb_manages_winbind
[ "$CTDB_MANAGES_WINBIND" = "yes" ] && {
service "$CTDB_SERVICE_WINBIND" stop > /dev/null 2>&1
@ -62,6 +62,13 @@ start_samba() {
# make absolutely sure winbindd is dead
killall -q -9 winbindd
}
}
/usr/bin/net serverid wipe
# start the winbind service
[ "$CTDB_MANAGES_WINBIND" = "yes" ] && {
service "$CTDB_SERVICE_WINBIND" start
}