mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 23:43:00 +02:00
Fixing a syntax error in pakfire's functions.sh.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@1042 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -144,6 +144,7 @@
|
||||
* libxml2-2.6.26
|
||||
* libxslt-1.1.17
|
||||
* linux-2.6.16.55
|
||||
* linux-2.6.16.56
|
||||
* linux-atm-2.4.1
|
||||
* linux-libc-headers-2.6.12.0
|
||||
* linuxigd-0.95
|
||||
|
||||
@@ -80,7 +80,11 @@ start_service() {
|
||||
done
|
||||
|
||||
if [ -e "/etc/init.d/${1}" ]; then
|
||||
(sleep ${DELAY} && /etc/init.d/${1} start) ${BACKGROUND}
|
||||
if [ -n "${BACKGROUND}" ]; then
|
||||
(sleep ${DELAY} && /etc/init.d/${1} start) &
|
||||
else
|
||||
sleep ${DELAY} && /etc/init.d/${1} start
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user