diff options
author | Colin Smith <colin@pfsense.org> | 2005-06-22 19:45:06 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-06-22 19:45:06 +0000 |
commit | 98291f960ff76897bf40ab5f82c385fc660ca662 (patch) | |
tree | eb476973e1a5a2cdf447f3a7bf274f70e51bd547 /etc/rc | |
parent | 3c41c4abe1bbfe64db16632a59ec3f94ba366778 (diff) | |
download | pfsense-98291f960ff76897bf40ab5f82c385fc660ca662.zip pfsense-98291f960ff76897bf40ab5f82c385fc660ca662.tar.gz |
Start services at bootup. This is a temporary solution until all services are moved over to XML.
Diffstat (limited to 'etc/rc')
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ if [ ! "$PLATFORM" = "cdrom" ]; then for FILE in /usr/local/etc/rc.d/*.sh; do echo -n " Starting ${FILE}..." - sh $FILE >>/tmp/bootup_messages 2>&1 + sh $FILE start >>/tmp/bootup_messages 2>&1 echo "done." done fi |