diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
commit | 59988921ebad528d4b2ea1a78be81f5feee490d5 (patch) | |
tree | b66eb3c3de1bbad64774418afb69989e18641765 /chapter06/shadow.xml | |
parent | 8c68addc8e21ceaec084545ee0ed6c983d054232 (diff) |
Add -v to commands that accept it
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/shadow.xml')
-rw-r--r-- | chapter06/shadow.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index a0a64b899..8b0ad56d7 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -60,7 +60,7 @@ files:</para> <indexterm zone="shadow-limits-login_access"><primary sortas="e-/etc/limits">/etc/limits</primary></indexterm> <indexterm zone="shadow-limits-login_access"><primary sortas="e-/etc/login.access">/etc/login.access</primary></indexterm> -<screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen> +<screen><userinput>cp -v etc/{limits,login.access} /etc</userinput></screen> <para id="shadow-login_defs">Instead of using the default <emphasis>crypt</emphasis> method, use the more secure <emphasis>MD5</emphasis> method of password @@ -86,20 +86,20 @@ the <command>sed</command> given below:</para> <para>Move a misplaced program to its proper location:</para> -<screen><userinput>mv /usr/bin/passwd /bin</userinput></screen> +<screen><userinput>mv -v /usr/bin/passwd /bin</userinput></screen> <para>Move Shadow's libraries to more appropriate locations:</para> -<screen><userinput>mv /lib/libshadow.*a /usr/lib -rm /lib/libshadow.so -ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> +<screen><userinput>mv -v /lib/libshadow.*a /usr/lib +rm -v /lib/libshadow.so +ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> <para>The <parameter>-D</parameter> option of the <command>useradd</command> program requires the <filename class="directory">/etc/default</filename> directory for it to work properly:</para> -<screen><userinput>mkdir /etc/default</userinput></screen> +<screen><userinput>mkdir -v /etc/default</userinput></screen> </sect2> |