diff options
author | Zack Winkles <winkie@linuxfromscratch.org> | 2004-06-18 15:50:52 +0000 |
---|---|---|
committer | Zack Winkles <winkie@linuxfromscratch.org> | 2004-06-18 15:50:52 +0000 |
commit | 8dffa04af3d57467169cf3aba590b2f7c9988f61 (patch) | |
tree | dd185cfef1982176f275ab06b0df8c3dbb9d148c /chapter06 | |
parent | b5acab6376b46a41fe0f52db5156800ffb844e79 (diff) |
Dropped the chmod's that I added a few days earlier. They are not needed.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3807 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/coreutils.xml | 3 | ||||
-rw-r--r-- | chapter06/man.xml | 3 | ||||
-rw-r--r-- | chapter06/shadow.xml | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 7437cd451..984981273 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -73,8 +73,7 @@ user:</para> <para>When you're done testing, remove the dummy user and groups:</para> -<screen><userinput>sed -i '/dummy/d' /etc/passwd /etc/group -chmod 644 /etc/passwd /etc/group</userinput></screen> +<screen><userinput>sed -i '/dummy/d' /etc/passwd /etc/group</userinput></screen> <para>Install the package:</para> diff --git a/chapter06/man.xml b/chapter06/man.xml index 5050a6c52..54f7174a6 100644 --- a/chapter06/man.xml +++ b/chapter06/man.xml @@ -40,8 +40,7 @@ width instead of being limited to 80 characters:</para> switch to the <emphasis>PAGER</emphasis> variable so that escape sequences are properly handled by Less:</para> -<screen><userinput>sed -i 's@-is@&R@g' configure -chmod 755 configure</userinput></screen> +<screen><userinput>sed -i 's@-is@&R@g' configure</userinput></screen> <para>The third is also a sed substitution to comment out the <quote>MANPATH /usr/man</quote> line in the <filename>man.conf</filename> file to prevent diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index f3adc61f8..1ce985807 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -68,8 +68,7 @@ and type it all in):</para> <screen><userinput>cp etc/login.defs.linux /etc/login.defs sed -i -e 's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \ - -e 's@/var/spool/mail@/var/mail@' /etc/login.defs -chmod 644 /etc/login.defs</userinput></screen> + -e 's@/var/spool/mail@/var/mail@' /etc/login.defs</userinput></screen> <para>Move some misplaced symlinks/programs to their proper locations:</para> |