summaryrefslogtreecommitdiff
path: root/sh/runit.sh
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2015-05-09 16:22:37 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2015-10-29 09:31:32 -0500
commit1133e238cb69f5700878f92183e0b43d5a3624ff (patch)
tree55679ead63bddd7517aa98e48dc27c302bab9f65 /sh/runit.sh
parentee944553a9ea35622046bd1ab5657fd416a7019a (diff)
Add support for runitgithub/runit
Diffstat (limited to 'sh/runit.sh')
-rw-r--r--sh/runit.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/sh/runit.sh b/sh/runit.sh
new file mode 100644
index 00000000..ae4ad776
--- /dev/null
+++ b/sh/runit.sh
@@ -0,0 +1,30 @@
+# Copyright (c) 2014 Benda Xu <heroxbd@gentoo.org>
+# Released under the 2-clause BSD license.
+
+runit_start()
+{
+ local service_dir runit_service
+ service_dir="${runit_service_dir:-/etc/sv}
+ runit_service="${service_dir}/${RC_SVCNAME}"
+ if [ ! -d "${runit_service}" ]; then
+ eerror "Runit service ${runit_service} not found"
+ return 1
+ fi
+ ebegin "Starting ${name:-$RC_SVCNAME}"
+ ln -snf "${runit_service}" "${RC_SVCDIR}/runit/$RC_SVCNAME" &&
+ sv check up "${RC_SVCDIR}/runit/$RC_SVCNAME"
+ eend $? "Failed to start $RC_SVCNAME"
+}
+
+runit_stop()
+{
+ ebegin "Stopping ${name:-$RC_SVCNAME}"
+ sv down "${RC_SVCDIR}/runit/${RC_SVCNAME}" &&
+ rm "${RC_SVCDIR}/runit/${RC_SVCNAME}"
+ eend $? "Failed to stop $RC_SVCNAME"
+}
+
+runit_status()
+{
+ sv status "${RC_SVCDIR}/runit/${RC_SVCNAME}"
+}