From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: In-Reply-To: <20201021144149.27886-1-bst@pengutronix.de> MIME-Version: 1.0 Message-Id: From: Michael Olbrich Date: Fri, 30 Oct 2020 13:02:31 +0100 Subject: Re: [ptxdist] [APPLIED] 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 Thanks, applied as d0277b310c4ac979f8df0601f589ae2b1069625a. Michael [sent from post-receive hook] On Fri, 30 Oct 2020 13:02:31 +0100, Bastian Krause wrote: > The nfs-utils tools are installed into /usr/sbin since the /usr merge. > > Fixes: e5068a95a ("nfsutils: /usr merge") > Signed-off-by: Bastian Krause > Message-Id: <20201021144149.27886-1-bst@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/projectroot/etc/init.d/nfsd b/projectroot/etc/init.d/nfsd > index 744bdbf98d61..93ac82d05272 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 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de