diff options
author | Marc Heerdink <gimli@linuxfromscratch.org> | 2002-01-30 16:16:20 +0000 |
---|---|---|
committer | Marc Heerdink <gimli@linuxfromscratch.org> | 2002-01-30 16:16:20 +0000 |
commit | b1bc8e0120a3d309ea05f6bf67b45d369123338d (patch) | |
tree | de3915cd4cd1accb2d7163321fe16f8b457785b5 /chapter06 | |
parent | d6bc8199625cccc22c8e38a724cd7782fdfa348f (diff) |
[Bug 245] Added a symlink from vipw to vigr
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1510 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/shadowpwd-exp.xml | 5 | ||||
-rw-r--r-- | chapter06/shadowpwd-inst.xml | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/chapter06/shadowpwd-exp.xml b/chapter06/shadowpwd-exp.xml index 9df64bdd8..3defeb609 100644 --- a/chapter06/shadowpwd-exp.xml +++ b/chapter06/shadowpwd-exp.xml @@ -15,5 +15,10 @@ details on the system.</para> /etc/login.defs</userinput>: /var/spool/mail is the old location of the user mailboxes. The location that is used nowadays is /var/mail.</para> +<para><userinput>ln -sf vipw vigr</userinput> and +<userinput>ln -sf vipw.8 vigr.8</userinput>: According to the manpage of +vipw, vigr should be a symlink to it. Because the shadow installation +procedure doesn't create these symlinks, we create them manually.</para> + </sect2> diff --git a/chapter06/shadowpwd-inst.xml b/chapter06/shadowpwd-inst.xml index 7b6947b63..d89b56931 100644 --- a/chapter06/shadowpwd-inst.xml +++ b/chapter06/shadowpwd-inst.xml @@ -22,7 +22,11 @@ cd /lib && mv libshadow.*a /usr/lib && ln -sf libshadow.so.0 libshadow.so && cd /usr/lib && -ln -sf ../../lib/libshadow.so</userinput></screen></para> +ln -sf ../../lib/libshadow.so && +cd /usr/sbin && +ln -sf vipw vigr && +cd /usr/share/man/man8 && +ln -sf vipw.8 vigr.8</userinput></screen></para> </sect2> |