rc: added missing start paramater, version 2.18

This commit is contained in:
Juergen Daubert 2007-10-18 09:00:43 +02:00
parent d301405c4b
commit b28971ae31
4 changed files with 6 additions and 6 deletions

View File

@ -4,6 +4,6 @@ c8fe38143dffbbc628a7a33966fae408 rc.conf
5b09d4a67beb58022879fa9ce0f5af1b rc.fix
d1be35927946756c68242f29c16ee983 rc.local
394d5cff98ab59fd1a0ec64fe79292cb rc.modules
f45e1bfe3080d1686cf901715dbcb37d rc.multi
8a6e0bd75b531238ddbf68d2019f5ce7 rc.multi
b509225319fbdcf5a2dcc1a1f9fc8783 rc.shutdown
9a19749d4d924948281beb167ccebe28 rc.single
d8d9bd102b0177a7bb30db9fd088a6e8 rc.single

View File

@ -3,8 +3,8 @@
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=rc
version=2.17
release=6
version=2.18
release=1
source=(inittab rc rc.modules rc.single rc.multi rc.local rc.fix rc.shutdown rc.conf)
build() {

View File

@ -16,7 +16,7 @@ if [ "${SERVICES[*]}" ]; then
echo -n "starting services:"
if [ -f /etc/rc.d/$SYSLOG -a -x /etc/rc.d/$SYSLOG ]; then
echo -n " $SYSLOG"
/etc/rc.d/$SYSLOG &> /dev/null || echo -n "[ERROR]"
/etc/rc.d/$SYSLOG start &> /dev/null || echo -n "[ERROR]"
fi
for service in ${SERVICES[@]}; do
echo -n " $service"

View File

@ -32,7 +32,7 @@ if [ "$PREVLEVEL" != "N" ]; then
/sbin/start_udev
if [ -f /etc/rc.d/$SYSLOG -a -x /etc/rc.d/$SYSLOG ]; then
/etc/rc.d/$SYSLOG &> /dev/null
/etc/rc.d/$SYSLOG start &> /dev/null
fi
fi