* [gentoo-doc-cvs] cvs commit: hb-working-rcscripts.xml
@ 2007-01-29 2:45 Josh Saddler
0 siblings, 0 replies; 4+ messages in thread
From: Josh Saddler @ 2007-01-29 2:45 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/01/29 02:45:56
Modified: hb-working-rcscripts.xml
Log:
typo fix, thanks to grahl for reporting on IRC
Revision Changes Path
1.28 xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?r1=1.27&r2=1.28
Index: hb-working-rcscripts.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- hb-working-rcscripts.xml 28 Oct 2006 09:17:55 -0000 1.27
+++ hb-working-rcscripts.xml 29 Jan 2007 02:45:56 -0000 1.28
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.27 2006/10/28 09:17:55 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.28 2007/01/29 02:45:56 nightmorph Exp $ -->
<sections>
@@ -543,7 +543,7 @@
<p>
If your service must write to local disks, it should need <c>localmount</c>. If
-it places anything in <path>/var/run</path> such as a pidfile, then should
+it places anything in <path>/var/run</path> such as a pidfile, then it should
start after <c>bootmisc</c>:
</p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-working-rcscripts.xml
@ 2007-03-08 6:52 Josh Saddler
0 siblings, 0 replies; 4+ messages in thread
From: Josh Saddler @ 2007-03-08 6:52 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/03/08 06:52:27
Modified: hb-working-rcscripts.xml
Log:
talk about device initiated services for the offline runlevel, bug 169721
Revision Changes Path
1.29 xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?r1=1.28&r2=1.29
Index: hb-working-rcscripts.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- hb-working-rcscripts.xml 29 Jan 2007 02:45:56 -0000 1.28
+++ hb-working-rcscripts.xml 8 Mar 2007 06:52:27 -0000 1.29
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.28 2007/01/29 02:45:56 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.29 2007/03/08 06:52:27 nightmorph Exp $ -->
<sections>
@@ -14,8 +14,8 @@
these aspects and explains how to deal with these scripts.
</abstract>
-<version>1.22</version>
-<date>2006-09-07</date>
+<version>1.23</version>
+<date>2007-03-07</date>
<section>
<title>Runlevels</title>
@@ -755,6 +755,25 @@
</pre>
<p>
+Even though <c>net.eth0</c> has been removed from the offline runlevel,
+<c>udev</c> will still attempt to start any devices it detects and launch the
+appropriate services. Therefore, you will need to add each network service you
+do not want started (as well as services for any other devices that may be
+started by udev) to <path>/etc/conf.d/rc</path> as shown.
+</p>
+
+<pre caption="Disabling device initiated services in /etc/conf.d/rc">
+RC_COLDPLUG="yes"
+<comment>(Next, specify the services you do not want automatically started)</comment>
+RC_PLUG_SERVICES="!net.eth0"
+</pre>
+
+<note>
+For more information on device initiated services, please see the comments
+inside <path>/etc/conf.d/rc</path>.
+</note>
+
+<p>
Now edit your bootloader configuration and add a new entry for the
<c>offline</c> runlevel. For instance, in <path>/boot/grub/grub.conf</path>:
</p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-working-rcscripts.xml
@ 2007-07-08 1:40 Josh Saddler
0 siblings, 0 replies; 4+ messages in thread
From: Josh Saddler @ 2007-07-08 1:40 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/07/08 01:40:55
Modified: hb-working-rcscripts.xml
Log:
updated rc-update commands for bug 184515
Revision Changes Path
1.30 xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?r1=1.29&r2=1.30
Index: hb-working-rcscripts.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- hb-working-rcscripts.xml 8 Mar 2007 06:52:27 -0000 1.29
+++ hb-working-rcscripts.xml 8 Jul 2007 01:40:55 -0000 1.30
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.29 2007/03/08 06:52:27 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.30 2007/07/08 01:40:55 nightmorph Exp $ -->
<sections>
@@ -14,8 +14,8 @@
these aspects and explains how to deal with these scripts.
</abstract>
-<version>1.23</version>
-<date>2007-03-07</date>
+<version>1.24</version>
+<date>2007-07-07</date>
<section>
<title>Runlevels</title>
@@ -335,14 +335,19 @@
</pre>
<p>
-The <c>rc-update show</c> command will show all the available init scripts and
+The <c>rc-update -v show</c> command will show all the available init scripts and
list at which runlevels they will execute:
</p>
<pre caption="Receiving init script information">
-# <i>rc-update show</i>
+# <i>rc-update -v show</i>
</pre>
+<p>
+You can also run <c>rc-update show</c> (without <c>-v</c>) to just view enabled
+init scripts and their runlevels.
+</p>
+
</body>
</subsection>
</section>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-working-rcscripts.xml
@ 2007-10-11 20:09 Josh Saddler
0 siblings, 0 replies; 4+ messages in thread
From: Josh Saddler @ 2007-10-11 20:09 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/10/11 20:09:02
Modified: hb-working-rcscripts.xml
Log:
php4 is being masked for removal, thanks to hoffie for updates via the gentoo-dev ML
Revision Changes Path
1.31 xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml?r1=1.30&r2=1.31
Index: hb-working-rcscripts.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- hb-working-rcscripts.xml 8 Jul 2007 01:40:55 -0000 1.30
+++ hb-working-rcscripts.xml 11 Oct 2007 20:09:02 -0000 1.31
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.30 2007/07/08 01:40:55 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-rcscripts.xml,v 1.31 2007/10/11 20:09:02 nightmorph Exp $ -->
<sections>
@@ -14,8 +14,8 @@
these aspects and explains how to deal with these scripts.
</abstract>
-<version>1.24</version>
-<date>2007-07-07</date>
+<version>1.25</version>
+<date>2007-10-11</date>
<section>
<title>Runlevels</title>
@@ -385,7 +385,7 @@
</p>
<pre caption="Variable defined in /etc/conf.d/apache2">
-APACHE2_OPTS="-D PHP4"
+APACHE2_OPTS="-D PHP5"
</pre>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-11 20:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-29 2:45 [gentoo-doc-cvs] cvs commit: hb-working-rcscripts.xml Josh Saddler
-- strict thread matches above, loose matches on Subject: below --
2007-03-08 6:52 Josh Saddler
2007-07-08 1:40 Josh Saddler
2007-10-11 20:09 Josh Saddler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox