aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-03-02 19:29:23 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-03-02 19:29:23 +0000
commit8dbddfb248e87ab7ba0ae9a1c2d2c77460d0b6b0 (patch)
tree4dbec14bf69faa4196a6a317007a94989cd9fbb2 /chapter07
parent44a7fad22b6c10a0ce72727fa0d4bcb46bca5ac2 (diff)
Replaced && by &amp;&amp;
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@254 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r--chapter07/rc.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter07/rc.xml b/chapter07/rc.xml
index 3aba51da3..16dfe2e8a 100644
--- a/chapter07/rc.xml
+++ b/chapter07/rc.xml
@@ -85,7 +85,7 @@ runlevel=$RUNLEVEL
# was passed to this script we won't change runlevels.
#
-[ "$1" != "" ] && runlevel=$1
+[ "$1" != "" ] &amp;&amp; runlevel=$1
if [ "$runlevel" = "" ]
then
echo "Usage: $0 &lt;runlevel&gt;" &gt;&2