]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
rpcbind: Update initscript for moved binary
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 10 Apr 2021 13:49:23 +0000 (13:49 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 12 Apr 2021 09:28:57 +0000 (09:28 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/rpcbind
src/initscripts/packages/rpcbind

index 8db9050114ac9cffd377ed85707e840a4537bb91..39d4dba4db125582ba1e9a4dd60b282a00c0a519 100644 (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
 
index 7216acd906691a14a2c9af7e9622c9348525ba2a..57571fd7ad495149a358cdc2570b217bf8e2286c 100644 (file)
 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
                ;;
 
        *)