blob: ee7b782acbef97203e91dc0edfb3f2b6778f740a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
diff -ruN etc/net/ifaces/default/options /etc/net/ifaces/default/options
--- etc/net/ifaces/default/options 2005-08-02 08:26:44.000000000 +0000
+++ /etc/net/ifaces/default/options 2005-10-24 16:20:07.000000000 +0000
@@ -24,7 +24,7 @@
# /etc/net will try to configure interface at the first succeeding
# method. Note that etcnet will process routes and rules despite of
# BOOTPROTO.
-BOOTPROTO=static
+BOOTPROTO=dhcp
# Defines if the interface will be automatically brought up during
# system startup or 'service network start' invocation.
diff -ruN etc/net/scripts/config-ipv4 /etc/net/scripts/config-ipv4
--- etc/net/scripts/config-ipv4 2005-08-10 08:08:40.000000000 +0000
+++ /etc/net/scripts/config-ipv4 2005-10-24 16:48:49.000000000 +0000
@@ -1,5 +1,5 @@
#!/bin/bash
-
+#set -x
. $SCRIPTDIR/functions
pickup_options
diff -ruN etc/net/scripts/ifup /etc/net/scripts/ifup
--- etc/net/scripts/ifup 2005-09-16 18:38:01.000000000 +0000
+++ /etc/net/scripts/ifup 2005-10-24 16:42:12.000000000 +0000
@@ -1,5 +1,5 @@
#!/bin/bash
-
+#set -x
# This script is intended to be run from command-line or etcnet
# initscript. It determines if the iface should be created, then
# creates the device and calls ifup-common to do the rest.
diff -ruN etc/net/scripts/ifup-common /etc/net/scripts/ifup-common
--- etc/net/scripts/ifup-common 2005-08-03 09:03:26.000000000 +0000
+++ /etc/net/scripts/ifup-common 2005-10-24 16:42:51.000000000 +0000
@@ -1,5 +1,5 @@
#!/bin/bash
-
+#set -x
# This script continues configuration of an interface started by ifup,
# ifup-removable or ifup-ifplugd scripts. We assume that all necessary
# checks are done yet.
diff -ruN etc/net/scripts/network.init /etc/net/scripts/network.init
--- etc/net/scripts/network.init 2005-09-29 12:54:32.000000000 +0000
+++ /etc/net/scripts/network.init 2005-10-24 16:41:17.000000000 +0000
@@ -1,4 +1,5 @@
#!/bin/bash
+#set -x
#
# network
# chkconfig: 2345 10 90
|