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/start-stop-daemon.sh | |
parent | 83bb827edf5b9be04a326d1970d6f55db239281f (diff) |
Remove eval calls from supervisor start functions
This fixes #77.
Diffstat (limited to 'sh/start-stop-daemon.sh')
-rw-r--r-- | sh/start-stop-daemon.sh | 2 |
1 files changed, 1 insertions, 1 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 \ |