samba: remove pid at killproc in initscript

sometime a stale nmbd or smbd process prevent start of samba.
this change should kill all processes.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2020-11-01 18:06:08 +01:00
committed by Michael Tremer
parent 9c6fd77927
commit 58b374c255
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = samba
PAK_VER = 73
PAK_VER = 74
DEPS = avahi cups libtirpc krb5 perl-Parse-Yapp

View File

@@ -31,13 +31,13 @@ case "$1" in
stop)
boot_mesg "Stopping smbd..."
killproc -p /var/run/smbd.pid /usr/sbin/smbd
killproc /usr/sbin/smbd
boot_mesg "Stopping nmbd..."
killproc -p /var/run/nmbd.pid /usr/sbin/nmbd
killproc /usr/sbin/nmbd
boot_mesg "Stopping winbind..."
killproc -p /var/run/winbindd.pid /usr/sbin/winbindd
killproc /usr/sbin/winbindd
;;
reload)