mirror of
https://github.com/OpenRC/openrc.git
synced 2024-12-12 19:24:38 +08:00
Cater for einfo calls inside the depend function
This commit is contained in:
parent
b67f71ca5d
commit
52664d77f9
@ -6,19 +6,29 @@
|
||||
. /etc/init.d/functions.sh
|
||||
|
||||
need() {
|
||||
exec 1>&3
|
||||
[ -n "$*" ] && echo "${SVCNAME} ineed $*"
|
||||
exec 1>&2
|
||||
}
|
||||
use() {
|
||||
exec 1>&3
|
||||
[ -n "$*" ] && echo "${SVCNAME} iuse $*"
|
||||
exec 1>&2
|
||||
}
|
||||
before() {
|
||||
exec 1>&3
|
||||
[ -n "$*" ] && echo "${SVCNAME} ibefore $*"
|
||||
exec 1>&2
|
||||
}
|
||||
after() {
|
||||
exec 1>&3
|
||||
[ -n "$*" ] && echo "${SVCNAME} iafter $*"
|
||||
exec 1>&2
|
||||
}
|
||||
provide() {
|
||||
exec 1>&3
|
||||
[ -n "$*" ] && echo "${SVCNAME} iprovide $*"
|
||||
exec 1>&2
|
||||
}
|
||||
depend() {
|
||||
:
|
||||
@ -45,10 +55,10 @@ for SVCNAME in * ; do
|
||||
[ -e /etc/conf.d/"${SVCNAME}" ] && . /etc/conf.d/"${SVCNAME}" >&2
|
||||
|
||||
if . /etc/init.d/"${SVCNAME}" ; then
|
||||
# Restore stdout now
|
||||
exec 1>&3
|
||||
|
||||
echo "${SVCNAME}"
|
||||
exec 1>&2
|
||||
|
||||
depend
|
||||
|
||||
# Add any user defined depends
|
||||
|
Loading…
Reference in New Issue
Block a user