shadowpwd-exp.xml 756 B

12345678910111213141516171819
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' src/useradd.c
  4. &gt; useradd.c.temp &amp;&amp;</userinput>: This sed is used to fix a
  5. compilation bug which occurs due to a variable (nflg) being used but not
  6. defined.</para>
  7. <para><userinput>cp limits login.access and others:</userinput> These files
  8. were not installed during the installation of the package so we copy
  9. them manually as those files are used to configure authentication
  10. details on the system.</para>
  11. <para><userinput>sed "s%/var/spool/mail%/var/mail%" login.defs.linux &gt;
  12. /etc/login.defs</userinput>: /var/spool/mail is the old location of the
  13. user mailboxes. The location that is used nowadays is /var/mail.</para>
  14. </sect2>