diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-19 18:03:57 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-19 18:03:57 -0500 |
commit | 0d1f1010c299a95332f224c3be9e8dfdd85eec54 (patch) | |
tree | e95cf7a9b210d83f84e4ae50282ebb4705a7136c /sh | |
parent | 83bb827edf5b9be04a326d1970d6f55db239281f (diff) |
Remove eval calls from supervisor start functions
This fixes #77.
Diffstat (limited to 'sh')
-rw-r--r-- | sh/start-stop-daemon.sh | 2 | ||||
-rw-r--r-- | sh/supervise-daemon.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sh/start-stop-daemon.sh b/sh/start-stop-daemon.sh index 6f396b3b..0449e5b6 100644 --- a/sh/start-stop-daemon.sh +++ b/sh/start-stop-daemon.sh @@ -38,7 +38,7 @@ ssd_start() service_inactive && _inactive=true mark_service_inactive fi - eval start-stop-daemon --start \ + start-stop-daemon --start \ --exec $command \ ${chroot:+--chroot} $chroot \ ${procname:+--name} $procname \ diff --git a/sh/supervise-daemon.sh b/sh/supervise-daemon.sh index e6ac1174..389635f6 100644 --- a/sh/supervise-daemon.sh +++ b/sh/supervise-daemon.sh @@ -19,7 +19,7 @@ supervise_start() fi ebegin "Starting ${name:-$RC_SVCNAME}" - eval supervise-daemon --start \ + supervise-daemon --start \ ${chroot:+--chroot} $chroot \ ${pidfile:+--pidfile} $pidfile \ ${command_user+--user} $command_user \ |