From 233825f99777cc3f4b2c8b46bbc939f29429ca3e Mon Sep 17 00:00:00 2001 From: John Ogness Date: Sun, 10 Jan 2021 01:05:15 +0100 Subject: user/rpcbind: fix install location of rpcbind /etc/init.d/rpcbind has /sbin/rpcbind hard-coded but rpcbind is installed in /usr/sbin. The APKBUILD specifies --bindir=/sbin during configuration, but this was probably meant to be --sbindir. Use --sbindir instead so that rpcbind is located in /sbin. Signed-off-by: John Ogness --- user/rpcbind/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user') diff --git a/user/rpcbind/APKBUILD b/user/rpcbind/APKBUILD index a535b8c7a..383e98045 100644 --- a/user/rpcbind/APKBUILD +++ b/user/rpcbind/APKBUILD @@ -22,7 +22,7 @@ build() { --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ - --bindir=/sbin \ + --sbindir=/sbin \ --enable-warmstarts \ --with-statedir=/var/lib/rpcbind \ --with-rpcuser=rpc \ -- cgit v1.2.3-70-g09d2 From aa32f8d9a3b93ffbab629a4ee7b504258db490c5 Mon Sep 17 00:00:00 2001 From: John Ogness Date: Sun, 10 Jan 2021 01:09:42 +0100 Subject: user/nfs-utils: fix path to rpc.statd /etc/init.d/rpc.statd has /sbin/rpc.statd hard-coded but rpc.statd is installed in /usr/sbin. Update the script to use /usr/sbin. Signed-off-by: John Ogness --- user/nfs-utils/rpc.statd.initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user') diff --git a/user/nfs-utils/rpc.statd.initd b/user/nfs-utils/rpc.statd.initd index ea78b9aef..bd0e9cb8f 100644 --- a/user/nfs-utils/rpc.statd.initd +++ b/user/nfs-utils/rpc.statd.initd @@ -4,7 +4,7 @@ [ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs -rpc_bin=/sbin/rpc.statd +rpc_bin=/usr/sbin/rpc.statd rpc_pid=/var/run/rpc.statd.pid depend() { -- cgit v1.2.3-70-g09d2