aboutsummaryrefslogtreecommitdiff
path: root/rc.conf
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2002-04-19 17:13:21 +0000
committerJudd Vinet <judd@archlinux.org>2002-04-19 17:13:21 +0000
commit3a3db1e368443447d7eaec461110bb122d026d83 (patch)
tree2123e1d533940ba79b689286646868c9fa87eb59 /rc.conf
parentcd5a839558fa3e5b10423fa33e621be2f27acf12 (diff)
downloadinitscripts-3a3db1e368443447d7eaec461110bb122d026d83.tar.xz
Cleaned up networking in initscripts
Diffstat (limited to 'rc.conf')
-rw-r--r--rc.conf33
1 files changed, 22 insertions, 11 deletions
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