rpcbind: Update initscript for moved binary

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2021-04-10 13:49:23 +00:00
parent dfe45e35eb
commit cea9d7b398
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 = rpcbind
PAK_VER = 3
PAK_VER = 4
DEPS = libtirpc

View File

@@ -18,12 +18,12 @@
case "$1" in
start)
boot_mesg "Starting rpcbind"
loadproc /sbin/rpcbind
loadproc /usr/sbin/rpcbind
;;
stop)
boot_mesg "Stopping rpcbind"
killproc /sbin/rpcbind
killproc /usr/sbin/rpcbind
;;
restart)
@@ -33,7 +33,7 @@ case "$1" in
;;
status)
statusproc /sbin/rpcbind
statusproc /usr/sbin/rpcbind
;;
*)