home *** CD-ROM | disk | FTP | other *** search
- #
- #
- # This file is the network startup file.
- #
- #
-
- start()
- {
- if [ -f /boot/$1 ]; then
- /boot/$1 $2 &
- else
- echo There is no $1
- fi
- }
-
- #
- # Synchronous start
- #
- startsync()
- {
- if [ -f /boot/$1 ]; then
- /boot/$1 $2
- else
- echo There is no $1
- fi
- }
-
- start beos/system/servers/net_server
- startsync beos/system/servers/net_server -waitstart
- start beos/bin/dhcp_client -E
- start beos/bin/ftpd -E
- start beos/bin/telnetd -E
- start beos/system/servers/mail_daemon -E
-
-