From 3a3db1e368443447d7eaec461110bb122d026d83 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Fri, 19 Apr 2002 17:13:21 +0000 Subject: Cleaned up networking in initscripts --- rc.conf | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) (limited to 'rc.conf') diff --git a/rc.conf b/rc.conf index 9aaab14..f29f7c2 100644 --- a/rc.conf +++ b/rc.conf @@ -6,20 +6,29 @@ # Localization # KEYMAP=us -TIMEZONE=Canada/Pacific +TIMEZONE=America/New_York # # Networking # HOSTNAME="myhost" -IF_UP=( "lo 127.0.0.1" - "eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255" -) -IF_DN=("lo down" - "eth0 down" -) -ROUTE_UP=("add default gw 192.168.0.1") -ROUTE_DN=("del default gw 192.168.0.1") + +# +# Interfaces to start at boot-up (in this order) +# Declare each interface then list in INTERFACES +# (prefix an interface in INTERFACES with a ! to disable it) +# +lo="lo 127.0.0.1" +eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255" +INTERFACES=(lo eth0) + +# +# Routes to start at boot-up (in this order) +# Declare each route then list in ROUTES +# (prefix a route in ROUTES with a ! to disable it) +# +gateway="default gw 192.168.0.1" +ROUTES=(gateway) # # Daemons to start at boot-up (in this order) @@ -28,9 +37,11 @@ ROUTE_DN=("del default gw 192.168.0.1") DAEMONS=(!pcmcia network crond inetd) # -# profile scripts in /etc/profile.d to enable +# Profiles to start when a user first logs in (in this order) +# (prefix a profile with a ! to disable it) +# (profiles are found in /etc/profile.d) # -PROFILES=() +PROFILES=(!postgresql.sh qt.sh kde.sh) # # PCMCIA -- cgit v1.2.3