diff options
Diffstat (limited to 'chapter06/shadow.xml')
-rw-r--r-- | chapter06/shadow.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index d01ef11ee..66482202c 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -50,10 +50,14 @@ </note> <para>Disable the installation of the <command>groups</command> program - and its man pages, as Coreutils provides a better version:</para> + and its man pages, as Coreutils provides a better version. Also + Prevent the installation of manual pages that were already installed by the + <xref linkend="man-pages"/> package:</para> <screen><userinput remap="pre">sed -i 's/groups$(EXEEXT) //' src/Makefile.in -find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \;</userinput></screen> +find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \; +find man -name Makefile.in -exec sed -i 's/getspnam\.3 / /' {} \; +find man -name Makefile.in -exec sed -i 's/passwd\.5 / /' {} \;</userinput></screen> <para id="shadow-login_defs">Instead of using the default <emphasis>crypt</emphasis> method, use the more secure |