1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-15 19:53:59 +02:00
openwrt/openwrt/package/base-files/default/etc/init.d/rcS

16 lines
354 B
Plaintext
Raw Normal View History

2005-01-16 12:43:02 +01:00
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
${FAILSAFE:+exit}
# FIXME: add logging configuration
#[ -f /etc/config/network ] && . /etc/config/network
#eval $(ipcalc "$log_ipaddr")
#[ "$log_ipaddr" = "$IP" ] || log_ipaddr=""
syslogd -C 16 #${log_ipaddr:+-L -R $log_ipaddr}
2005-05-13 02:37:19 +02:00
klogd
for i in /etc/init.d/S*; do
$i start 2>&1
done | logger -s -p 6 -t '' &