Gentoo Archives: gentoo-doc-cvs

From: Joshua Saddler <nightmorph@××××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: openrc-migration.xml
Date: Wed, 16 Apr 2008 00:40:13
Message-Id: E1Jlvh5-0008CP-5r@stork.gentoo.org
1 nightmorph 08/04/16 00:40:11
2
3 Modified: openrc-migration.xml
4 Log:
5 more updates via email
6
7 Revision Changes Path
8 1.10 xml/htdocs/doc/en/openrc-migration.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/openrc-migration.xml?rev=1.10&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/openrc-migration.xml?rev=1.10&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/openrc-migration.xml?r1=1.9&r2=1.10
13
14 Index: openrc-migration.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/openrc-migration.xml,v
17 retrieving revision 1.9
18 retrieving revision 1.10
19 diff -u -r1.9 -r1.10
20 --- openrc-migration.xml 15 Apr 2008 17:38:23 -0000 1.9
21 +++ openrc-migration.xml 16 Apr 2008 00:40:11 -0000 1.10
22 @@ -1,6 +1,6 @@
23 <?xml version='1.0' encoding='UTF-8'?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/openrc-migration.xml,v 1.9 2008/04/15 17:38:23 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/openrc-migration.xml,v 1.10 2008/04/16 00:40:11 nightmorph Exp $ -->
27
28 <guide link="/doc/en/openrc-migration.xml">
29 <title>Baselayout and OpenRC Migration Guide</title>
30 @@ -24,7 +24,7 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>1.5</version>
35 +<version>1.6</version>
36 <date>2008-04-15</date>
37
38 <chapter>
39 @@ -261,10 +261,27 @@
40
41 <p>
42 If you are missing any other network initscripts, follow the instructions above
43 -to re-add them, simply replace <c>eth0</c> with the name of your network
44 +to re-add them. Simply replace <c>eth0</c> with the name of your network
45 device.
46 </p>
47
48 +<p>
49 +Also, <path>/etc/conf.d/net</path> no longer uses bash-style arrays for
50 +configuration. Please review <path>/usr/share/doc/openrc/net.example</path> for
51 +configuration instructions. Conversion should be relatively straight-forward,
52 +for example a static IP assignment would change as follows:
53 +</p>
54 +
55 +<pre caption="Old /etc/conf.d/net style">
56 +config_eth0=( "192.168.1.37 netmask 255.255.255.0 brd 192.168.1.255" )
57 +routes_eth0=( "default via 192.168.1.100" )
58 +</pre>
59 +
60 +<pre caption="New /etc/conf.d/net style">
61 +config_eth0="192.168.1.37 netmask 255.255.255.0 brd 192.168.1.255"
62 +routes_eth0="default via 192.168.1.100"
63 +</pre>
64 +
65 </body>
66 </section>
67 <section>
68
69
70
71 --
72 gentoo-doc-cvs@l.g.o mailing list