5af58b4514
query runlevels, services and state without using bash. We also provide libeinfo so other programs can easily use our informational functions. As such, we have dropped the requirement of using bash as the init script shell. We now use /bin/sh and have strived to make the scripts as portable as possible. Shells that work are bash and dash. busybox works provided you disable s-s-d. If you have WIPE_TMP set to yes in conf.d/bootmisc you should disable find too. zsh and ksh do not work at this time. Networking support is currently being re-vamped also as it was heavily bash array based. As such, a new config format is available like so config_eth0="1.2.3.4/24 5.6.7.8/16" or like so config_eth0="'1.2.3.4 netmask 255.255.255.0' '5.6.7.8 netmask 255.255.0.0'" We will still support the old bash array format provided that /bin/sh IS a link it bash. ChangeLog for baselayout-1 can be found in our SVN repo.
75 lines
1.7 KiB
Bash
Executable File
75 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
# Shell wrapper for runscript
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
. /etc/init.d/functions.sh
|
|
. "${RC_LIBDIR}"/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
|
|
eerror "${SVCNAME}: not enough arguments"
|
|
exit 1
|
|
fi
|
|
|
|
[ "${RC_DEBUG}" = "yes" ] && set -x
|
|
|
|
# If we're net.eth0 or openvpn.work then load net or openvpn config
|
|
rc_c=${SVCNAME%%.*}
|
|
if [ -n "${rc_c}" -a "${rc_c}" != "${SVCNAME}" ] ; then
|
|
if [ -e "/etc/conf.d/${rc_c}.${RC_SOFTLEVEL}" ] ; then
|
|
. "/etc/conf.d/${rc_c}.${RC_SOFTLEVEL}"
|
|
elif [ -e "/etc/conf.d/${rc_c}" ] ; then
|
|
. "/etc/conf.d/${rc_c}"
|
|
fi
|
|
fi
|
|
unset rc_c
|
|
|
|
# Overlay with our specific config
|
|
if [ -e "/etc/conf.d/${SVCNAME}.${RC_SOFTLEVEL}" ] ; then
|
|
. "/etc/conf.d/${SVCNAME}.${RC_SOFTLEVEL}"
|
|
elif [ -e "/etc/conf.d/${SVCNAME}" ] ; then
|
|
. "/etc/conf.d/${SVCNAME}"
|
|
fi
|
|
|
|
# Load any system overrides
|
|
[ -e /etc/rc.conf ] && . /etc/rc.conf
|
|
|
|
# Apply any ulimit defined
|
|
[ -n "${RC_ULIMIT}" ] && ulimit ${RC_ULIMIT}
|
|
|
|
# Load our script
|
|
. $1
|
|
|
|
shift
|
|
|
|
while [ -n "$1" ] ; do
|
|
# See if we have the required function and run it
|
|
for rc_x in start stop ${opts} ; do
|
|
if [ "${rc_x}" = "$1" ] ; then
|
|
if type "$1" >/dev/null 2>/dev/null ; then
|
|
unset rc_x
|
|
"$1" || exit $?
|
|
shift
|
|
continue 2
|
|
else
|
|
if [ "${rc_x}" = "start" -o "${rc_x}" = "stop" ] ; then
|
|
exit 0
|
|
else
|
|
eerror "${SVCNAME}: function \`$1' defined but does not exist"
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
done
|
|
eerror "${SVCNAME}: unknown function \`$1'"
|
|
exit 1
|
|
done
|
|
|
|
# vim: set ts=4 :
|