From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Bastian Krause Date: Wed, 21 Oct 2020 16:41:47 +0200 Message-Id: <20201021144149.27886-1-bst@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH 1/3] nfsutils: fix paths in init script List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Bastian Krause The nfs-utils tools are installed into /usr/sbin since the /usr merge. Fixes: e5068a95a ("nfsutils: /usr merge") Signed-off-by: Bastian Krause --- projectroot/etc/init.d/nfsd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projectroot/etc/init.d/nfsd b/projectroot/etc/init.d/nfsd index 744bdbf98..93ac82d05 100644 --- a/projectroot/etc/init.d/nfsd +++ b/projectroot/etc/init.d/nfsd @@ -8,15 +8,15 @@ case "$1" in /bin/mount -t nfsd none /proc/fs/nfsd >/dev/null 2>&1 echo "Starting NFS mountd..." - /sbin/rpc.mountd + /usr/sbin/rpc.mountd echo "Starting NFS nfsd..." - /sbin/rpc.nfsd -p 2049 3 + /usr/sbin/rpc.nfsd -p 2049 3 echo "Starting NFS statd..." - /sbin/rpc.statd + /usr/sbin/rpc.statd echo "Exporting NFS Filesystems..." - /sbin/exportfs -ra >/dev/null 2>&1 + /usr/sbin/exportfs -ra >/dev/null 2>&1 ;; esac -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de