aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-08-09 16:43:10 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-08-09 16:43:10 +0000
commitb1772b15bfa7c53e474bb6ba2c70fe59c0faf9ac (patch)
tree0e603cb14526bdb99365591265ff50a60e1a4c41
parent1a4422699a9f1854a75b651665b9e2cc853cbfa9 (diff)
change ch7 echo commands to use full path
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@953 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter07/checkfs.xml2
-rw-r--r--chapter07/functions.xml2
-rw-r--r--chapter07/halt.xml2
-rw-r--r--chapter07/loadkeys.xml2
-rw-r--r--chapter07/mountfs.xml2
-rw-r--r--chapter07/rc.xml2
-rw-r--r--chapter07/rcS.xml2
-rw-r--r--chapter07/reboot.xml2
-rw-r--r--chapter07/sendsignals.xml2
-rw-r--r--chapter07/setclock.xml2
-rw-r--r--chapter07/sysklogd.xml2
-rw-r--r--chapter07/template.xml2
-rw-r--r--index.xml4
13 files changed, 14 insertions, 14 deletions
diff --git a/chapter07/checkfs.xml b/chapter07/checkfs.xml
index 2857eeea2..caa04f09c 100644
--- a/chapter07/checkfs.xml
+++ b/chapter07/checkfs.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/checkfs</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; checkfs &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/checkfs &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/checkfs
diff --git a/chapter07/functions.xml b/chapter07/functions.xml
index d82ff60cd..d9ba8f6f8 100644
--- a/chapter07/functions.xml
+++ b/chapter07/functions.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/functions</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; functions &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/functions &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/functions
diff --git a/chapter07/halt.xml b/chapter07/halt.xml
index 82eaee109..3272dcab2 100644
--- a/chapter07/halt.xml
+++ b/chapter07/halt.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/halt</filename> script by running the
following command:</para>
-<para><screen><userinput>cat &gt; halt &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/halt &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/halt
diff --git a/chapter07/loadkeys.xml b/chapter07/loadkeys.xml
index a9ed74dae..e658955e7 100644
--- a/chapter07/loadkeys.xml
+++ b/chapter07/loadkeys.xml
@@ -12,7 +12,7 @@ that everyone will need this script?
<para>Create the <filename>/etc/init.d/loadkeys</filename> script by
running the following command:</para>
-<para><screen><userinput>cat &gt; loadkeys &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/loadkeys &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/loadkeys
diff --git a/chapter07/mountfs.xml b/chapter07/mountfs.xml
index 1ffa16306..a21e6fdad 100644
--- a/chapter07/mountfs.xml
+++ b/chapter07/mountfs.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/mountfs</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; mountfs &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/mountfs &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/mountfs
diff --git a/chapter07/rc.xml b/chapter07/rc.xml
index 625df6bc7..f9076ae84 100644
--- a/chapter07/rc.xml
+++ b/chapter07/rc.xml
@@ -5,7 +5,7 @@
script. Create the <filename>/etc/init.d/rc</filename> script by running the
following command:</para>
-<para><screen><userinput>cat &gt; rc &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/rc &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/rc
#
diff --git a/chapter07/rcS.xml b/chapter07/rcS.xml
index fde87d99c..5f00bfb04 100644
--- a/chapter07/rcS.xml
+++ b/chapter07/rcS.xml
@@ -5,7 +5,7 @@
Create the <filename>/etc/init.d/rcS</filename> script by running the following
command:</para>
-<para><screen><userinput>cat &gt; rcS &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/rcS &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/rcS
diff --git a/chapter07/reboot.xml b/chapter07/reboot.xml
index 3b69e5088..1e07ca70b 100644
--- a/chapter07/reboot.xml
+++ b/chapter07/reboot.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/reboot</filename> script by running the
following command:</para>
-<para><screen><userinput>cat &gt; reboot &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/reboot &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/reboot
diff --git a/chapter07/sendsignals.xml b/chapter07/sendsignals.xml
index 771f8de18..a0146be36 100644
--- a/chapter07/sendsignals.xml
+++ b/chapter07/sendsignals.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/sendsignals</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; sendsignals &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/sendsignals &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/sendsignals
diff --git a/chapter07/setclock.xml b/chapter07/setclock.xml
index 848485d55..917295bf3 100644
--- a/chapter07/setclock.xml
+++ b/chapter07/setclock.xml
@@ -18,7 +18,7 @@ changed to the value of <emphasis>1</emphasis>.</para>
<para>Create the <filename>/etc/init.d/setclock</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; setclock &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/setclock &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/setclock
diff --git a/chapter07/sysklogd.xml b/chapter07/sysklogd.xml
index 6cf8c1d12..4537f0d1e 100644
--- a/chapter07/sysklogd.xml
+++ b/chapter07/sysklogd.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/sysklogd</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; sysklogd &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/sysklogd &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/sysklogd
diff --git a/chapter07/template.xml b/chapter07/template.xml
index 91e65216b..cc61cb9ef 100644
--- a/chapter07/template.xml
+++ b/chapter07/template.xml
@@ -4,7 +4,7 @@
<para>Create the <filename>/etc/init.d/template</filename> script by running
the following command:</para>
-<para><screen><userinput>cat &gt; template &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/init.d/template &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/
diff --git a/index.xml b/index.xml
index 38fd4043f..f87f6a119 100644
--- a/index.xml
+++ b/index.xml
@@ -4,8 +4,8 @@
<!ENTITY book SYSTEM "book/book.xml">
-<!ENTITY version "20010808">
-<!ENTITY releasedate "August 8th, 2001">
+<!ENTITY version "20010809">
+<!ENTITY releasedate "August 9th, 2001">
<!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org">
<!ENTITY http-root "http://ftp.linuxfromscratch.org">