Gentoo Archives: gentoo-doc-cvs

From: "Jan Kundrat (jkt)" <jkt@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-config.xml
Date: Wed, 03 Aug 2011 08:17:19
Message-Id: 20110803081707.BFCBB2004C@flycatcher.gentoo.org
1 jkt 11/08/03 08:17:07
2
3 Modified: hb-install-config.xml
4 Log:
5 #376087, s/HOSTNAME/hostname/ and stop using Bash arrays in /etc/conf.d/net
6
7 Thanks to swift for the patch
8
9 Revision Changes Path
10 1.104 xml/htdocs/doc/en/handbook/hb-install-config.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.104&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?rev=1.104&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml?r1=1.103&r2=1.104
15
16 Index: hb-install-config.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v
19 retrieving revision 1.103
20 retrieving revision 1.104
21 diff -u -r1.103 -r1.104
22 --- hb-install-config.xml 2 Aug 2011 17:43:17 -0000 1.103
23 +++ hb-install-config.xml 3 Aug 2011 08:17:07 -0000 1.104
24 @@ -4,7 +4,7 @@
25 <!-- The content of this document is licensed under the CC-BY-SA license -->
26 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
27
28 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.103 2011/08/02 17:43:17 jkt Exp $ -->
29 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-config.xml,v 1.104 2011/08/03 08:17:07 jkt Exp $ -->
30
31 <sections>
32
33 @@ -14,8 +14,8 @@
34 proceed.
35 </abstract>
36
37 -<version>10</version>
38 -<date>2011-08-02</date>
39 +<version>11</version>
40 +<date>2011-08-03</date>
41
42 <section>
43 <title>Filesystem Information</title>
44 @@ -206,8 +206,8 @@
45 <pre caption="Setting the host name">
46 # <i>nano -w /etc/conf.d/hostname</i>
47
48 -<comment>(Set the HOSTNAME variable to your host name)</comment>
49 -HOSTNAME="<i>tux</i>"
50 +<comment>(Set the hostname variable to your host name)</comment>
51 +hostname="<i>tux</i>"
52 </pre>
53
54 <p>
55 @@ -310,8 +310,8 @@
56 </p>
57
58 <pre caption="Manually setting IP information for eth0">
59 -config_eth0=( "192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255" )
60 -routes_eth0=( "default via 192.168.0.1" )
61 +config_eth0="192.168.0.2 netmask 255.255.255.0 brd 192.168.0.255"
62 +routes_eth0="default via 192.168.0.1"
63 </pre>
64
65 <p>
66 @@ -319,7 +319,7 @@
67 </p>
68
69 <pre caption="Automatically obtaining an IP address for eth0">
70 -config_eth0=( "dhcp" )
71 +config_eth0="dhcp"
72 </pre>
73
74 <p>