diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-13 12:27:08 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-13 12:52:10 -0500 |
commit | 8a8032478a755f6e2ceaebc5425e61c6817df936 (patch) | |
tree | 9446bd9c58ebc819e118d971a3d2919fa3d06fc7 /sh/runit.sh | |
parent | ac53c9a658589456c678b6bfe674a66a3845e564 (diff) |
Make use of name vs RC_SVCNAME consistent in supervisor scripts
This fixes #79.
Diffstat (limited to 'sh/runit.sh')
-rw-r--r-- | sh/runit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/runit.sh b/sh/runit.sh index e9c1d220..3cef0f3a 100644 --- a/sh/runit.sh +++ b/sh/runit.sh @@ -21,7 +21,7 @@ runit_start() ebegin "Starting ${name:-$RC_SVCNAME}" ln -snf "${service_path}" "${service_link}" sv start "${service_link}" > /dev/null 2>&1 - eend $? "Failed to start $RC_SVCNAME" + eend $? "Failed to start ${name:-$RC_SVCNAME}" } runit_stop() @@ -36,7 +36,7 @@ runit_stop() ebegin "Stopping ${name:-$RC_SVCNAME}" sv stop "${service_link}" > /dev/null 2>&1 && rm "${service_link}" - eend $? "Failed to stop $RC_SVCNAME" + eend $? "Failed to stop ${name:-$RC_SVCNAME}" } runit_status() |