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) DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP)
PROG = rpcbind PROG = rpcbind
PAK_VER = 3 PAK_VER = 4
DEPS = libtirpc DEPS = libtirpc

View File

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