Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: openrc-migration.xml
Date: Thu, 12 Feb 2009 00:59:34
Message-Id: E1LXPvQ-00030u-EV@stork.gentoo.org
1 nightmorph 09/02/12 00:59:32
2
3 Modified: openrc-migration.xml
4 Log:
5 looks like zzam typoed his instructions in bug 253396. should be sysinit runlevel, not sysfs. originally reported via email, verified in ebuilds and upstream subversion.
6
7 Revision Changes Path
8 1.14 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.14&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/openrc-migration.xml?rev=1.14&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/openrc-migration.xml?r1=1.13&r2=1.14
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.13
18 retrieving revision 1.14
19 diff -u -r1.13 -r1.14
20 --- openrc-migration.xml 11 Feb 2009 09:09:40 -0000 1.13
21 +++ openrc-migration.xml 12 Feb 2009 00:59:32 -0000 1.14
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.13 2009/02/11 09:09:40 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/openrc-migration.xml,v 1.14 2009/02/12 00:59:32 nightmorph Exp $ -->
27
28 <guide link="/doc/en/openrc-migration.xml">
29 <title>Baselayout and OpenRC Migration Guide</title>
30 @@ -250,14 +250,14 @@
31
32 <p>
33 OpenRC no longer starts <c>udev</c> by default, but it does need to be present
34 -in the <c>sysfs</c> runlevel to be started. The OpenRC ebuild should detect if
35 -<c>udev</c> was previously enabled and add it to the <c>sysfs</c> runlevel.
36 +in the <c>sysinit</c> runlevel to be started. The OpenRC ebuild should detect if
37 +<c>udev</c> was previously enabled and add it to the <c>sysinit</c> runlevel.
38 However, to be safe, check if <c>udev</c> is present:
39 </p>
40
41 <pre caption="Verifying udev">
42 -# <i>ls -l /etc/runlevels/sysfs</i>
43 -lrwxrwxrwx 1 root root 14 2009-01-29 08:00 /etc/runlevels/sysfs/udev -> \
44 +# <i>ls -l /etc/runlevels/sysinit</i>
45 +lrwxrwxrwx 1 root root 14 2009-01-29 08:00 /etc/runlevels/sysinit/udev -> \
46 /etc/init.d/udev
47 </pre>
48
49 @@ -265,8 +265,8 @@
50 If <c>udev</c> is not listed, add it to the correct runlevel:
51 </p>
52
53 -<pre caption="Adding udev to the sysfs runlevel">
54 -# <i>rc-update add udev sysfs</i>
55 +<pre caption="Adding udev to the sysinit runlevel">
56 +# <i>rc-update add udev sysinit</i>
57 </pre>
58
59 </body>