From: Michael Tremer Date: Sat, 10 Apr 2021 13:49:23 +0000 (+0000) Subject: rpcbind: Update initscript for moved binary X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=cea9d7b39810c91a12e7773217758abebe26466d rpcbind: Update initscript for moved binary Signed-off-by: Michael Tremer --- diff --git a/lfs/rpcbind b/lfs/rpcbind index 8db9050114..39d4dba4db 100644 --- a/lfs/rpcbind +++ b/lfs/rpcbind @@ -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 diff --git a/src/initscripts/packages/rpcbind b/src/initscripts/packages/rpcbind index 7216acd906..57571fd7ad 100644 --- a/src/initscripts/packages/rpcbind +++ b/src/initscripts/packages/rpcbind @@ -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 ;; *)