diff mbox

[nfs-utils/systemd] systemd: add PATH for finding systemctl

Message ID 5359D0EE.7030408@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Kinglong Mee April 25, 2014, 3:05 a.m. UTC
The 1.3.0 release adds a call to systemctl fails for it's in /usr/bin.

[root@localhost nfs-utils]# start-statd
/usr/sbin/start-statd: line 9: systemctl: command not found
Statd service already running!

Reported-by: Allan Duncan <amd1234@fastmail.com.au>
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
---
 utils/statd/start-statd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Steve Dickson April 25, 2014, 2:30 p.m. UTC | #1
On 04/24/2014 11:05 PM, Kinglong Mee wrote:
> The 1.3.0 release adds a call to systemctl fails for it's in /usr/bin.
> 
> [root@localhost nfs-utils]# start-statd
> /usr/sbin/start-statd: line 9: systemctl: command not found
> Statd service already running!
> 
> Reported-by: Allan Duncan <amd1234@fastmail.com.au>
> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Committed... Thanks!

steved.

> ---
>  utils/statd/start-statd | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/utils/statd/start-statd b/utils/statd/start-statd
> index cde3583..8ac3798 100644
> --- a/utils/statd/start-statd
> +++ b/utils/statd/start-statd
> @@ -4,7 +4,7 @@
>  # /var/run/rpc.statd.pid).
>  # It should run statd with whatever flags are apropriate for this
>  # site.
> -PATH=/sbin:/usr/sbin
> +PATH="/sbin:/usr/sbin:/bin:/usr/bin"
>  if systemctl start statd.service
>  then :
>  else
> -- 1.9.0
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/utils/statd/start-statd b/utils/statd/start-statd
index cde3583..8ac3798 100644
--- a/utils/statd/start-statd
+++ b/utils/statd/start-statd
@@ -4,7 +4,7 @@ 
 # /var/run/rpc.statd.pid).
 # It should run statd with whatever flags are apropriate for this
 # site.
-PATH=/sbin:/usr/sbin
+PATH="/sbin:/usr/sbin:/bin:/usr/bin"
 if systemctl start statd.service
 then :
 else