openrc/sh/runscript.sh.in

224 lines
4.8 KiB
Bash
Raw Normal View History

#!@SHELL@
# Shell wrapper for runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2008-03-26 00:03:45 +05:30
. @SYSCONFDIR@/init.d/functions.sh
. @LIBEXECDIR@/sh/rc-functions.sh
# Support LiveCD foo
if [ -r /sbin/livecd-functions.sh ]; then
. /sbin/livecd-functions.sh
livecd_read_commandline
fi
if [ -z "$1" -o -z "$2" ]; then
2009-04-27 02:43:26 +05:30
eerror "$RC_SVCNAME: not enough arguments"
exit 1
fi
# So daemons know where to recall us if needed
export RC_SERVICE="$1"
shift
# Compat
2009-04-27 02:43:26 +05:30
export SVCNAME=$RC_SVCNAME
# Descript the init script to the user
describe()
{
2009-04-27 02:43:26 +05:30
if [ -n "$description" ]; then
einfo "$description"
else
2009-04-27 02:43:26 +05:30
ewarn "No description for $RC_SVCNAME"
fi
local svc= desc=
2009-04-27 02:43:26 +05:30
for svc in ${extra_commands:-$opts} $extra_started_commands; do
eval desc=\$description_$svc
if [ -n "$desc" ]; then
einfo "$HILITE$svc$NORMAL: $desc"
else
2009-04-27 02:43:26 +05:30
ewarn "$HILITE$svc$NORMAL: no description"
fi
done
}
# Report status
_status()
{
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"
return 1
fi
}
# Template start / stop / status functions
start()
{
2009-04-27 02:43:26 +05:30
[ -n "$command" ] || return 0
local _background=
2009-04-27 02:43:26 +05:30
ebegin "Starting ${name:-$RC_SVCNAME}"
if yesno "${command_background}"; then
_background="--background --pidfile"
fi
2009-04-27 02:43:26 +05:30
if yesno "$start_inactive"; then
local _inactive=false
service_inactive && _inactive=true
mark_service_inactive
fi
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
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}"
start-stop-daemon --stop \
2009-04-27 02:43:26 +05:30
${command:+--exec} $command \
${procname:+--name} $procname \
${pidfile:+--pidfile} $pidfile \
${stopsig:+--signal} $stopsig
2009-04-27 02:43:26 +05:30
eend $? "Failed to stop $RC_SVCNAME"
}
status()
{
_status
}
2009-04-27 02:43:26 +05:30
yesno $RC_DEBUG && set -x
_conf_d=${RC_SERVICE%/*}/../conf.d
# If we're net.eth0 or openvpn.work then load net or openvpn config
_c=${RC_SVCNAME%%.*}
2009-04-27 02:43:26 +05:30
if [ -n "$_c" -a "$_c" != "$RC_SVCNAME" ]; then
if [ -e "$_conf_d/$_c.$RC_RUNLEVEL" ]; then
. "$_conf_d/$_c.$RC_RUNLEVEL"
elif [ -e "$_conf_d/$_c" ]; then
. "$_conf_d/$_c"
fi
fi
unset _c
# Overlay with our specific config
2009-04-27 02:43:26 +05:30
if [ -e "$_conf_d/$RC_SVCNAME.$RC_RUNLEVEL" ]; then
. "$_conf_d/$RC_SVCNAME.$RC_RUNLEVEL"
elif [ -e "$_conf_d/$RC_SVCNAME" ]; then
. "$_conf_d/$RC_SVCNAME"
fi
unset _conf_d
# Load any system overrides
2008-03-26 00:03:45 +05:30
[ -e @SYSCONFDIR@/rc.conf ] && . @SYSCONFDIR@/rc.conf
# Apply any ulimit defined
2009-04-27 02:43:26 +05:30
[ -n "${rc_ulimit:-$RC_ULIMIT}" ] && ulimit ${rc_ulimit:-$RC_ULIMIT}
# Load our script
2009-04-27 02:43:26 +05:30
. "$RC_SERVICE"
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"
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"
exit 1
fi
done
unset _f
while [ -n "$1" ]; do
# See if we have the required function and run it
2009-04-27 02:43:26 +05:30
for _cmd in describe start stop status ${extra_commands:-$opts} \
$extra_started_commands
do
if [ "$_cmd" = "$1" ]; then
if [ "$(command -v "$1")" = "$1" ]; then
# 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
shift
continue 3
fi
done
fi
# 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"
exit 1
fi
fi
done
unset _cmd
2009-04-27 02:43:26 +05:30
if [ "$(command -v "$1_pre")" = "$1_pre" ]
then
"$1"_pre || exit $?
fi
"$1" || exit $?
2009-04-27 02:43:26 +05:30
if [ "$(command -v "$1_post")" = "$1_post" ]
then
"$1"_post || exit $?
fi
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
else
2009-04-27 02:43:26 +05:30
eerror "$RC_SVCNAME: function \`$1' defined but does not exist"
exit 1
fi
fi
fi
done
2009-04-27 02:43:26 +05:30
eerror "$RC_SVCNAME: unknown function \`$1'"
exit 1
done