2016-07-28 02:56:26 +05:30
|
|
|
# Copyright (c) 2016 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2016-07-28 02:56:26 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2016-07-28 02:56:26 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
|
|
|
runit_start()
|
|
|
|
{
|
|
|
|
local service_path service_link
|
|
|
|
service_path="${runit_service:-/etc/sv/${RC_SVCNAME}}"
|
|
|
|
if [ ! -d "${service_path}" ]; then
|
|
|
|
eerror "Runit service ${service_path} not found"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
service_link="${RC_SVCDIR}/sv/${service_path##*/}"
|
|
|
|
ebegin "Starting ${name:-$RC_SVCNAME}"
|
|
|
|
ln -snf "${service_path}" "${service_link}"
|
2018-11-06 20:26:33 +05:30
|
|
|
local i=0 retval=1
|
|
|
|
# it can take upto 5 seconds for runsv to start
|
|
|
|
while [ $i -lt 6 ] ; do
|
|
|
|
if sv start "${service_link}" > /dev/null 2>&1; then
|
|
|
|
retval=0
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
sleep 1 && i=$(expr $i + 1)
|
|
|
|
done
|
|
|
|
if [ $retval -eq 1 ]; then
|
|
|
|
# clean up the link else sv will keep on trying
|
|
|
|
rm "${service_link}"
|
|
|
|
fi
|
|
|
|
eend $retval "Failed to start ${name:-$RC_SVCNAME}"
|
2016-07-28 02:56:26 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
runit_stop()
|
|
|
|
{
|
|
|
|
local service_path service_link
|
|
|
|
service_path="${runit_service:-/etc/sv/${RC_SVCNAME}}"
|
|
|
|
if [ ! -d "${service_path}" ]; then
|
|
|
|
eerror "Runit service ${service_path} not found"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
service_link="${RC_SVCDIR}/sv/${service_path##*/}"
|
|
|
|
ebegin "Stopping ${name:-$RC_SVCNAME}"
|
|
|
|
sv stop "${service_link}" > /dev/null 2>&1 &&
|
|
|
|
rm "${service_link}"
|
2016-09-13 22:57:08 +05:30
|
|
|
eend $? "Failed to stop ${name:-$RC_SVCNAME}"
|
2016-07-28 02:56:26 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
runit_status()
|
|
|
|
{
|
|
|
|
local service_path service_link
|
|
|
|
service_path="${runit_service:-/etc/sv/${RC_SVCNAME}}"
|
|
|
|
if [ ! -d "${service_path}" ]; then
|
|
|
|
eerror "Runit service ${service_path} not found"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
service_link="${RC_SVCDIR}/sv/${service_path##*/}"
|
|
|
|
sv status "${service_link}"
|
|
|
|
}
|