Changeset c806f4a


Ignore:
Timestamp:
10/26/2014 01:18:53 PM (9 years ago)
Author:
Krejzi <krejzi@…>
Branches:
krejzi/svn
Children:
8ddd9c79
Parents:
7178f6d
Message:

Import postlfs config section.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd-ng@14735 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r7178f6d rc806f4a  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[krejzi] - .</para>
     52        </listitem>
     53        <listitem>
     54          <para>[krejzi] - Adjust Postlfs Configuration for use with LFS systemd.</para>
     55        </listitem>
     56        <listitem>
     57          <para>[krejzi] - Imported systemd-units from main systemd branch..</para>
     58        </listitem>
     59        <listitem>
     60          <para>[krejzi] - Rebranded the book into systemd-ng book.</para>
     61        </listitem>
     62        <listitem>
    5163          <para>[krejzi] - Imported BLFS revision 14732.</para>
    5264        </listitem>
  • postlfs/config/bootdisk.xml

    r7178f6d rc806f4a  
    7070    <para>The instructions for using GRUB2 to make a custom rescue CD-ROM are
    7171    also available in <ulink
    72     url='http://www.&lfs-domainname;/lfs/view/stable/chapter08/grub.html'>LFS
     72    url='&lfs-root;/chapter08/grub.html'>LFS
    7373    Chapter 8</ulink>.</para>
    7474
  • postlfs/config/config.xml

    r7178f6d rc806f4a  
    4040
    4141  <para> The remaining topics, <xref linkend="postlfs-config-logon"/>,
    42   <xref linkend="postlfs-config-shells"/>, <xref linkend="postlfs-config-random"/>,
    43   <xref linkend="autofs"/>, and
    44   <xref linkend="postlfs-config-netfs"/> are then addressed, in that order. They
     42  <xref linkend="postlfs-config-shells"/>, and
     43  <xref linkend="autofs"/>
     44  are then addressed, in that order. They
    4545  don't have much interaction with the other topics in this chapter.</para>
    4646
     
    4949  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="users.xml"/>
    5050  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="devices.xml"/>
    51   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="profile.xml"/>
     51  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="profile-systemd.xml"/>
    5252  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="vimrc.xml"/>
    5353  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="logon.xml"/>
    5454  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="etcshells.xml"/>
    55   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="random.xml"/>
     55<!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="random.xml"/> -->
    5656  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="lsb-release.xml"/>
    5757
  • postlfs/config/lsb-release.xml

    r7178f6d rc806f4a  
    8787      <para>
    8888        The configuration for this package was done in
    89         <ulink url="&lfs-website;/lfs/view/stable/chapter09/theend.html">LFS</ulink>. 
     89        <ulink url="&lfs-root;/chapter09/theend.html">LFS</ulink>. 
    9090        The file <filename>/etc/lsb-release</filename> should already exist.
    9191        Be sure that the DISTRIB_CODENAME entry has been set properly.
  • postlfs/config/profile-systemd.xml

    r7178f6d rc806f4a  
    230230if [ -d /usr/local/sbin -a $EUID -eq 0 ]; then
    231231        pathprepend /usr/local/sbin
    232 fi</literal>
     232fi
    233233
    234234# Set some defaults before other applications add to these paths.
    235235pathappend /usr/share/man  MANPATH
    236 pathappend /usr/share/info INFOPATH
     236pathappend /usr/share/info INFOPATH</literal>
    237237EOF</userinput></screen>
    238238
     
    311311    </indexterm>
    312312
    313       <para>This script sets an environment variable necessary for
    314       native language support. A full discussion on determining this
    315       variable can be found on the <ulink
    316       url="&lfs-root;/chapter07/profile.html">LFS Bash Shell
    317       Startup Files</ulink> page.</para>
     313      <para>This script sets environment variables necessary for
     314      native language support.</para>
    318315
    319316<screen role="root"><userinput>cat &gt; /etc/profile.d/i18n.sh &lt;&lt; "EOF"
    320 <literal># Set up i18n variables
    321 export LANG=<replaceable>&lt;ll&gt;</replaceable>_<replaceable>&lt;CC&gt;</replaceable>.<replaceable>&lt;charmap&gt;</replaceable><replaceable>&lt;@modifiers&gt;</replaceable></literal>
     317<literal># Begin /etc/profile.d/i18n.sh
     318
     319unset LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES \
     320      LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION
     321
     322if [ -n "$XDG_CONFIG_HOME" ] &amp;&amp; [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then
     323  . "$XDG_CONFIG_HOME/locale.conf"
     324elif [ -r /etc/locale.conf ]; then
     325  . /etc/locale.conf
     326fi
     327
     328export LANG="${LANG:-C}"
     329[ -n "$LC_CTYPE" ]          &amp;&amp; export LC_CTYPE
     330[ -n "$LC_NUMERIC" ]        &amp;&amp; export LC_NUMERIC
     331[ -n "$LC_TIME" ]           &amp;&amp; export LC_TIME
     332[ -n "$LC_COLLATE" ]        &amp;&amp; export LC_COLLATE
     333[ -n "$LC_MONETARY" ]       &amp;&amp; export LC_MONETARY
     334[ -n "$LC_MESSAGES" ]       &amp;&amp; export LC_MESSAGES
     335[ -n "$LC_PAPER" ]          &amp;&amp; export LC_PAPER
     336[ -n "$LC_NAME" ]           &amp;&amp; export LC_NAME
     337[ -n "$LC_ADDRESS" ]        &amp;&amp; export LC_ADDRESS
     338[ -n "$LC_TELEPHONE" ]      &amp;&amp; export LC_TELEPHONE
     339[ -n "$LC_MEASUREMENT" ]    &amp;&amp; export LC_MEASUREMENT
     340[ -n "$LC_IDENTIFICATION" ] &amp;&amp; export LC_IDENTIFICATION
     341
     342# End /etc/profile.d/i18n.sh</literal>
    322343EOF</userinput></screen>
    323344
Note: See TracChangeset for help on using the changeset viewer.