diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-05-13 07:50:11 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-05-13 07:50:11 +0000 |
commit | 21b1878de5c5d02acc48612bf92f6987be4760a8 (patch) | |
tree | d45813f332ac2adc5e411c79a6c3b5d4f057b93e /chapter06 | |
parent | 4a7a683b9a72b17fe56efe9b1e0e2e33d1c9278d (diff) |
Changed single to double quote in the echo command. Without it, lorien won't expand and defeats the sole purpose of creating the file - making perl's hostname check work
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2609 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/basic-net.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/basic-net.xml b/chapter06/basic-net.xml index c630abf33..8bfd7671a 100644 --- a/chapter06/basic-net.xml +++ b/chapter06/basic-net.xml @@ -12,7 +12,7 @@ information allowing resolution of hostnames to IP addresses. Create a very basic one (we'll make a better one later) with the following command:</para> -<para><screen><userinput>echo '127.0.0.1 $(hostname) localhost' > /etc/hosts</userinput></screen></para> +<para><screen><userinput>echo "127.0.0.1 $(hostname) localhost" > /etc/hosts</userinput></screen></para> <para>Now unpack the Lfs-Utils tarball again, as we're going to copy two necessary files from it. One is the /etc/services file, which is used to |