Revision 17b9532b
Added by Scott Ullrich over 20 years ago
etc/rc | ||
---|---|---|
70 | 70 |
/sbin/pfctl -f /tmp/rules.debug >/dev/null 2>&1 |
71 | 71 |
/sbin/pfctl -e >/dev/null 2>&1 |
72 | 72 |
|
73 |
echo Starting Secure Shell Services ... |
|
74 |
/etc/sshd |
|
75 |
|
|
76 | 73 |
echo Starting INETD for FTP-PROXY... |
77 | 74 |
/usr/sbin/inetd -wW -C 60 |
78 | 75 |
|
76 |
echo Starting Secure Shell Services ... |
|
77 |
/etc/sshd |
|
78 |
|
|
79 | 79 |
/usr/sbin/cron 2>/dev/null |
80 | 80 |
|
81 |
for FILE in /usr/local/etc/rc.d/* ; do |
|
82 |
echo "Starting ${FILE}..." |
|
83 |
sh $FILE |
|
81 |
for FILE in /usr/local/etc/rc.d/*.sh; do |
|
82 |
if [ -e $FILE ]; then |
|
83 |
echo "Starting ${FILE}..." |
|
84 |
sh $FILE |
|
85 |
fi |
|
84 | 86 |
done |
85 | 87 |
|
86 | 88 |
exit 0 |
Also available in: Unified diff
Do not try to execute *