2008-02-28 01:59:32 +05:30
|
|
|
#!@SHELL@
|
2007-04-05 16:48:42 +05:30
|
|
|
# Shell wrapper for runscript
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2011-01-09 01:55:32 +05:30
|
|
|
sourcex()
|
|
|
|
{
|
|
|
|
if [ "$1" = "-e" ]; then
|
|
|
|
shift
|
|
|
|
[ -e "$1" ] || return 1
|
|
|
|
fi
|
|
|
|
if ! . "$1"; then
|
|
|
|
eerror "$RC_SVCNAME: error loading $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-11-02 18:46:52 +05:30
|
|
|
sourcex "@SYSCONFDIR@/init.d/functions.sh"
|
|
|
|
sourcex "@LIBEXECDIR@/sh/rc-functions.sh"
|
|
|
|
|
|
|
|
# Support LiveCD foo
|
|
|
|
if sourcex -e "/sbin/livecd-functions.sh"; then
|
|
|
|
livecd_read_commandline
|
|
|
|
fi
|
|
|
|
|
2011-04-22 18:00:10 +05:30
|
|
|
if [ ! -e ${RC_SVCDIR}/softlevel ]; then
|
|
|
|
eerror "You are attempting to run an openrc service on a"
|
|
|
|
eerror "system which openrc did not boot."
|
|
|
|
eerror "You may be inside a chroot or you may have used"
|
|
|
|
eerror "another initialization system to boot this system."
|
|
|
|
eerror "In this situation, you will get unpredictable results!"
|
|
|
|
eerror
|
|
|
|
eerror "If you really want to do this, issue the following command:"
|
|
|
|
eerror "touch ${RC_SVCDIR}/softlevel"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-11-20 15:54:40 +05:30
|
|
|
if [ -z "$1" -o -z "$2" ]; then
|
2009-04-27 02:43:26 +05:30
|
|
|
eerror "$RC_SVCNAME: not enough arguments"
|
2007-04-05 16:48:42 +05:30
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2008-03-11 20:30:16 +05:30
|
|
|
# So daemons know where to recall us if needed
|
|
|
|
export RC_SERVICE="$1"
|
2008-04-27 01:02:28 +05:30
|
|
|
shift
|
2008-03-11 20:30:16 +05:30
|
|
|
|
2008-03-20 01:27:24 +05:30
|
|
|
# Compat
|
2009-04-27 02:43:26 +05:30
|
|
|
export SVCNAME=$RC_SVCNAME
|
2008-03-20 01:27:24 +05:30
|
|
|
|
2009-09-04 20:30:08 +05:30
|
|
|
# Dependency function
|
|
|
|
config() {
|
|
|
|
[ -n "$*" ] && echo "config $*"
|
|
|
|
}
|
|
|
|
need() {
|
|
|
|
[ -n "$*" ] && echo "need $*"
|
|
|
|
}
|
|
|
|
use() {
|
|
|
|
[ -n "$*" ] && echo "use $*"
|
|
|
|
}
|
|
|
|
before() {
|
|
|
|
[ -n "$*" ] && echo "before $*"
|
|
|
|
}
|
|
|
|
after() {
|
|
|
|
[ -n "$*" ] && echo "after $*"
|
|
|
|
}
|
|
|
|
provide() {
|
|
|
|
[ -n "$*" ] && echo "provide $*"
|
|
|
|
}
|
|
|
|
keyword() {
|
|
|
|
[ -n "$*" ] && echo "keyword $*"
|
|
|
|
}
|
|
|
|
|
2011-10-17 04:32:21 +05:30
|
|
|
# Describe the init script to the user
|
2008-01-11 17:43:46 +05:30
|
|
|
describe()
|
|
|
|
{
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ -n "$description" ]; then
|
|
|
|
einfo "$description"
|
2007-07-11 00:39:41 +05:30
|
|
|
else
|
2009-04-27 02:43:26 +05:30
|
|
|
ewarn "No description for $RC_SVCNAME"
|
2007-07-11 00:39:41 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
local svc= desc=
|
2011-10-18 00:17:45 +05:30
|
|
|
for svc in ${extra_commands:-$opts} $extra_started_commands \
|
|
|
|
$extra_stopped_commands; do
|
2009-04-27 02:43:26 +05:30
|
|
|
eval desc=\$description_$svc
|
|
|
|
if [ -n "$desc" ]; then
|
|
|
|
einfo "$HILITE$svc$NORMAL: $desc"
|
2007-07-11 00:39:41 +05:30
|
|
|
else
|
2009-04-27 02:43:26 +05:30
|
|
|
ewarn "$HILITE$svc$NORMAL: no description"
|
2007-07-11 00:39:41 +05:30
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2009-04-18 05:39:03 +05:30
|
|
|
# Report status
|
2009-04-18 16:09:53 +05:30
|
|
|
_status()
|
2009-04-18 05:39:03 +05:30
|
|
|
{
|
|
|
|
if service_stopping; then
|
|
|
|
ewarn "status: stopping"
|
|
|
|
return 4
|
|
|
|
elif service_starting; then
|
|
|
|
ewarn "status: starting"
|
|
|
|
return 8
|
|
|
|
elif service_inactive; then
|
|
|
|
ewarn "status: inactive"
|
|
|
|
return 16
|
|
|
|
elif service_started; then
|
|
|
|
if service_crashed; then
|
|
|
|
eerror "status: crashed"
|
|
|
|
return 32
|
|
|
|
fi
|
|
|
|
einfo "status: started"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
einfo "status: stopped"
|
2011-01-13 07:16:11 +05:30
|
|
|
return 3
|
2009-04-18 05:39:03 +05:30
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-04-18 16:09:53 +05:30
|
|
|
# Template start / stop / status functions
|
2008-04-27 01:02:28 +05:30
|
|
|
start()
|
|
|
|
{
|
2009-04-27 02:43:26 +05:30
|
|
|
[ -n "$command" ] || return 0
|
2008-04-27 01:02:28 +05:30
|
|
|
local _background=
|
2009-04-27 02:43:26 +05:30
|
|
|
ebegin "Starting ${name:-$RC_SVCNAME}"
|
2011-01-17 15:19:07 +05:30
|
|
|
if yesno "${command_background}"; then
|
2008-04-27 01:02:28 +05:30
|
|
|
_background="--background --pidfile"
|
|
|
|
fi
|
2009-04-27 02:43:26 +05:30
|
|
|
if yesno "$start_inactive"; then
|
2008-04-27 01:02:28 +05:30
|
|
|
local _inactive=false
|
|
|
|
service_inactive && _inactive=true
|
|
|
|
mark_service_inactive
|
|
|
|
fi
|
2009-05-27 03:06:53 +05:30
|
|
|
eval start-stop-daemon --start \
|
2009-04-27 02:43:26 +05:30
|
|
|
--exec $command \
|
|
|
|
${procname:+--name} $procname \
|
|
|
|
${pidfile:+--pidfile} $pidfile \
|
|
|
|
$_background $start_stop_daemon_args \
|
|
|
|
-- $command_args
|
|
|
|
eend $? "Failed to start $RC_SVCNAME" && return 0
|
|
|
|
if yesno "$start_inactive"; then
|
|
|
|
if ! $_inactive; then
|
2008-04-27 01:02:28 +05:30
|
|
|
mark_service_stopped
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
2009-04-27 02:43:26 +05:30
|
|
|
[ -n "$command" -o -n "$procname" -o -n "$pidfile" ] || return 0
|
|
|
|
ebegin "Stopping ${name:-$RC_SVCNAME}"
|
2008-04-27 01:02:28 +05:30
|
|
|
start-stop-daemon --stop \
|
2009-04-27 02:43:26 +05:30
|
|
|
${command:+--exec} $command \
|
|
|
|
${procname:+--name} $procname \
|
2009-04-27 19:02:13 +05:30
|
|
|
${pidfile:+--pidfile} $pidfile \
|
|
|
|
${stopsig:+--signal} $stopsig
|
2009-04-27 02:43:26 +05:30
|
|
|
eend $? "Failed to stop $RC_SVCNAME"
|
2008-04-27 01:02:28 +05:30
|
|
|
}
|
|
|
|
|
2009-04-18 16:09:53 +05:30
|
|
|
status()
|
|
|
|
{
|
|
|
|
_status
|
|
|
|
}
|
|
|
|
|
2009-04-27 02:43:26 +05:30
|
|
|
yesno $RC_DEBUG && set -x
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2011-12-11 12:48:08 +05:30
|
|
|
_conf_d=${RC_SERVICE%/*}/../conf.d
|
|
|
|
# If we're net.eth0 or openvpn.work then load net or openvpn config
|
|
|
|
_c=${RC_SVCNAME%%.*}
|
|
|
|
if [ -n "$_c" -a "$_c" != "$RC_SVCNAME" ]; then
|
|
|
|
if ! sourcex -e "$_conf_d/$_c.$RC_RUNLEVEL"; then
|
|
|
|
sourcex -e "$_conf_d/$_c"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
unset _c
|
|
|
|
|
|
|
|
# Overlay with our specific config
|
|
|
|
if ! sourcex -e "$_conf_d/$RC_SVCNAME.$RC_RUNLEVEL"; then
|
|
|
|
sourcex -e "$_conf_d/$RC_SVCNAME"
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2011-12-11 12:48:08 +05:30
|
|
|
unset _conf_d
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Load any system overrides
|
2011-01-09 01:55:32 +05:30
|
|
|
sourcex -e "@SYSCONFDIR@/rc.conf"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Apply any ulimit defined
|
2009-04-27 02:43:26 +05:30
|
|
|
[ -n "${rc_ulimit:-$RC_ULIMIT}" ] && ulimit ${rc_ulimit:-$RC_ULIMIT}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Load our script
|
2011-01-09 01:55:32 +05:30
|
|
|
sourcex "$RC_SERVICE"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2009-04-27 02:43:26 +05:30
|
|
|
for _d in $required_dirs; do
|
|
|
|
if [ ! -d $_d ]; then
|
|
|
|
eerror "$RC_SVCNAME: \`$_d' is not a directory"
|
2007-11-28 18:38:25 +05:30
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
unset _d
|
|
|
|
|
2009-04-27 02:43:26 +05:30
|
|
|
for _f in $required_files; do
|
|
|
|
if [ ! -r $_f ]; then
|
|
|
|
eerror "$RC_SVCNAME: \`$_f' is not readable"
|
2007-11-28 18:38:25 +05:30
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
unset _f
|
|
|
|
|
2011-07-26 22:49:59 +05:30
|
|
|
if [ -n "$opts" ]; then
|
|
|
|
ewarn "Use of the opts variable is deprecated and will be"
|
|
|
|
ewarn "removed in the future."
|
2011-10-18 00:17:45 +05:30
|
|
|
ewarn "Please use extra_commands, extra_started_commands or extra_stopped_commands."
|
2011-07-26 22:49:59 +05:30
|
|
|
fi
|
|
|
|
|
2007-11-20 15:54:40 +05:30
|
|
|
while [ -n "$1" ]; do
|
2011-10-17 04:32:21 +05:30
|
|
|
# Special case depend
|
2010-02-21 03:18:06 +05:30
|
|
|
if [ "$1" = depend ]; then
|
|
|
|
shift
|
|
|
|
_depend
|
|
|
|
continue
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
# See if we have the required function and run it
|
2010-02-21 03:18:06 +05:30
|
|
|
for _cmd in describe start stop status ${extra_commands:-$opts} \
|
2011-10-18 00:17:45 +05:30
|
|
|
$extra_started_commands $extra_stopped_commands
|
2009-04-27 02:43:26 +05:30
|
|
|
do
|
|
|
|
if [ "$_cmd" = "$1" ]; then
|
2008-04-21 23:02:17 +05:30
|
|
|
if [ "$(command -v "$1")" = "$1" ]; then
|
2008-01-11 17:43:46 +05:30
|
|
|
# If we're in the background, we may wish to
|
|
|
|
# fake some commands. We do this so we can
|
|
|
|
# "start" ourselves from inactive which then
|
2009-04-27 02:43:26 +05:30
|
|
|
# triggers other services to start which
|
|
|
|
# depend on us.
|
|
|
|
# A good example of this is openvpn.
|
|
|
|
if yesno $IN_BACKGROUND; then
|
|
|
|
for _cmd in $in_background_fake; do
|
|
|
|
if [ "$_cmd" = "$1" ]; then
|
2007-11-28 18:38:25 +05:30
|
|
|
shift
|
|
|
|
continue 3
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2008-01-11 17:43:46 +05:30
|
|
|
# Check to see if we need to be started before
|
|
|
|
# we can run this command
|
2009-04-27 02:43:26 +05:30
|
|
|
for _cmd in $extra_started_commands; do
|
|
|
|
if [ "$_cmd" = "$1" ]; then
|
2008-01-23 17:47:50 +05:30
|
|
|
if ! service_started; then
|
2009-04-27 02:43:26 +05:30
|
|
|
eerror "$RC_SVCNAME: cannot \`$1' as it has not been started"
|
2007-11-29 21:53:59 +05:30
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
2011-10-18 00:17:45 +05:30
|
|
|
# Check to see if we need to be stopped before
|
|
|
|
# we can run this command
|
|
|
|
for _cmd in $extra_stopped_commands; do
|
|
|
|
if [ "$_cmd" = "$1" ]; then
|
|
|
|
if ! service_stopped; then
|
|
|
|
eerror "$RC_SVCNAME: cannot \`$1' as it has not been stopped"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
2007-11-28 18:38:25 +05:30
|
|
|
unset _cmd
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ "$(command -v "$1_pre")" = "$1_pre" ]
|
|
|
|
then
|
2007-11-20 15:54:40 +05:30
|
|
|
"$1"_pre || exit $?
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
"$1" || exit $?
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ "$(command -v "$1_post")" = "$1_post" ]
|
|
|
|
then
|
2007-11-20 15:54:40 +05:30
|
|
|
"$1"_post || exit $?
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
shift
|
|
|
|
continue 2
|
|
|
|
else
|
2009-04-27 02:43:26 +05:30
|
|
|
if [ "$_cmd" = "start" -o "$_cmd" = "stop" ]
|
|
|
|
then
|
2008-01-26 22:16:53 +05:30
|
|
|
shift
|
|
|
|
continue 2
|
2007-04-05 16:48:42 +05:30
|
|
|
else
|
2009-04-27 02:43:26 +05:30
|
|
|
eerror "$RC_SVCNAME: function \`$1' defined but does not exist"
|
2007-04-05 16:48:42 +05:30
|
|
|
exit 1
|
|
|
|
fi
|
2011-01-17 15:19:07 +05:30
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
done
|
2009-04-27 02:43:26 +05:30
|
|
|
eerror "$RC_SVCNAME: unknown function \`$1'"
|
2007-04-05 16:48:42 +05:30
|
|
|
exit 1
|
|
|
|
done
|
2011-11-13 02:49:55 +05:30
|
|
|
|
|
|
|
exit 0
|