Deleted Added
full compact
rc (1308) rc (1412)
1#!/bin/sh
1#!/bin/sh
2# $Id: rc,v 1.20 1994/02/27 15:32:09 phk Exp $
2# $Id: rc,v 1.21 1994/03/25 04:58:58 rich Exp $
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10stty status '^T'

--- 140 unchanged lines hidden (view full) ---

151 echo -n ' portmap'; portmap
152fi
153
154# $gated and $routedflags are imported from /etc/netstart.
155# If $gated == YES, gated is used; otherwise routed.
156# If $routedflags == NO, routed isn't run.
157if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
158 echo -n ' gated'; gated $gatedflags
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10stty status '^T'

--- 140 unchanged lines hidden (view full) ---

151 echo -n ' portmap'; portmap
152fi
153
154# $gated and $routedflags are imported from /etc/netstart.
155# If $gated == YES, gated is used; otherwise routed.
156# If $routedflags == NO, routed isn't run.
157if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
158 echo -n ' gated'; gated $gatedflags
159elif [ X${routedflags} != X"NO" ]; then
159elif [ X"${routedflags}" != X"NO" ]; then
160 echo -n ' routed'; routed $routedflags
161fi
162
163if [ X${name_server} = X"YES" -a -r /etc/named.boot ]; then
164 echo -n ' named'; named
165fi
166
167# $ntpdate and $xntpdflags are imported from /etc/netstart.

--- 59 unchanged lines hidden ---
160 echo -n ' routed'; routed $routedflags
161fi
162
163if [ X${name_server} = X"YES" -a -r /etc/named.boot ]; then
164 echo -n ' named'; named
165fi
166
167# $ntpdate and $xntpdflags are imported from /etc/netstart.

--- 59 unchanged lines hidden ---