summaryrefslogtreecommitdiffstats
path: root/etc/rc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-02-02 01:50:41 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-02-02 01:50:41 +0000
commit10616c2b9aef49882f25ab3c92ec2b8c3e2e5097 (patch)
treefb2b2dcc62fec42682ec6f7925afd3d430824d73 /etc/rc
parent30c3a3060aa0960b88fcd5881da18e0c487556a2 (diff)
downloadpfsense-10616c2b9aef49882f25ab3c92ec2b8c3e2e5097.zip
pfsense-10616c2b9aef49882f25ab3c92ec2b8c3e2e5097.tar.gz
Add usbd to system startup.
Diffstat (limited to 'etc/rc')
-rwxr-xr-xetc/rc11
1 files changed, 7 insertions, 4 deletions
diff --git a/etc/rc b/etc/rc
index 243de2e..b954145 100755
--- a/etc/rc
+++ b/etc/rc
@@ -52,7 +52,7 @@ sysctl net.inet.tcp.sack.enable=0
mount_devfs devfs /dev
-echo Syncing master.passwd ...
+echo Syncing master.passwd...
/usr/sbin/pwd_mkdb -d /etc/ /etc/master.passwd
# Create an initial utmp file
@@ -73,15 +73,18 @@ cd /var/run && cp /dev/null utmp && chmod 644 utmp
echo Starting INETD for FTP-PROXY...
/usr/sbin/inetd -wW -C 60
-echo Starting Secure Shell Services ...
+echo Starting Secure Shell Services...
/etc/sshd
-/usr/sbin/cron 2>/dev/null
+echo Starting USB...
+/usr/sbin/usbd 2>>/tmp/bootup_messages
+
+/usr/sbin/cron 2>>/tmp/bootup_messages
for FILE in /usr/local/etc/rc.d/*.sh; do
if [ -e $FILE ]; then
echo "Starting ${FILE}..."
- sh $FILE
+ sh $FILE 2>>/tmp/bootup_messages
fi
done
OpenPOWER on IntegriCloud