Changeset eb9d3f2


Ignore:
Timestamp:
06/25/2019 04:51:17 AM (5 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
elogind
Children:
284586c
Parents:
dd16ca4d
Message:

Add a few missing <literal>

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@21724 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
19 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libpaper.xml

    rdd16ca4d reb9d3f2  
    100100
    101101cat &gt; /usr/bin/run-parts &lt;&lt; "EOF"
    102 #!/bin/sh
     102<literal>#!/bin/sh
    103103# run-parts:  Runs all the scripts found in a directory.
    104104# from Slackware, by Patrick J. Volkerding with ideas borrowed
     
    147147done
    148148
    149 exit 0
     149exit 0</literal>
    150150EOF
    151151
     
    185185
    186186<screen role="root"><userinput>cat &gt; /etc/papersize &lt;&lt; "EOF"
    187 a4
     187<literal>a4</literal>
    188188EOF</userinput></screen>
    189189
  • general/prog/rust.xml

    rdd16ca4d reb9d3f2  
    227227
    228228<screen><userinput>cat &lt;&lt; EOF &gt; config.toml
    229 # see config.toml.example for more possible options
     229<literal># see config.toml.example for more possible options
    230230[llvm]
    231231
     
    263263# get a trace if there is an Internal Compiler Exception
    264264backtrace-on-ice = true
    265 
     265</literal>
    266266EOF</userinput></screen>
    267267
  • general/sysutils/elogind.xml

    rdd16ca4d reb9d3f2  
    199199
    200200<screen role="root"><userinput>cat &gt;&gt; /etc/pam.d/system-session &lt;&lt; "EOF" &amp;&amp;
    201 # Begin elogind addition
     201<literal># Begin elogind addition
    202202   
    203203session  required    pam_loginuid.so
    204204session  optional    pam_elogind.so
    205205
    206 # End elogind addition
     206# End elogind addition</literal>
    207207EOF
    208208cat &gt; /etc/pam.d/elogind-user &lt;&lt; "EOF"
    209 # Begin /etc/pam.d/elogind-user
     209<literal># Begin /etc/pam.d/elogind-user
    210210
    211211account  required    pam_access.so
     
    222222password required    pam_deny.so
    223223
    224 # End /etc/pam.d/elogind-user
     224# End /etc/pam.d/elogind-user</literal>
    225225EOF</userinput></screen>
    226226
  • general/sysutils/fcron.xml

    rdd16ca4d reb9d3f2  
    241241
    242242<screen role="root"><userinput>cat &gt; /usr/bin/run-parts &lt;&lt; "EOF" &amp;&amp;
    243 #!/bin/sh
     243<literal>#!/bin/sh
    244244# run-parts:  Runs all the scripts found in a directory.
    245245# from Slackware, by Patrick J. Volkerding with ideas borrowed
     
    288288done
    289289
    290 exit 0
     290exit 0</literal>
    291291EOF
    292292chmod -v 755 /usr/bin/run-parts</userinput></screen>
     
    305305
    306306<screen role="root"><userinput>cat &gt; /var/spool/fcron/systab.orig &lt;&lt; "EOF"
    307 &amp;bootrun 01 * * * * root run-parts /etc/cron.hourly
     307<literal>&amp;bootrun 01 * * * * root run-parts /etc/cron.hourly
    308308&amp;bootrun 02 4 * * * root run-parts /etc/cron.daily
    309309&amp;bootrun 22 4 * * 0 root run-parts /etc/cron.weekly
    310 &amp;bootrun 42 4 1 * * root run-parts /etc/cron.monthly
     310&amp;bootrun 42 4 1 * * root run-parts /etc/cron.monthly</literal>
    311311EOF</userinput></screen>
    312312
  • general/sysutils/logrotate.xml

    rdd16ca4d reb9d3f2  
    126126
    127127<screen role="root"><userinput>cat &gt; /etc/logrotate.conf &lt;&lt; EOF
    128 # Begin of /etc/logrotate.conf
     128<literal># Begin of /etc/logrotate.conf
    129129
    130130# Rotate log files weekly
     
    165165include /etc/logrotate.d
    166166
    167 # End of /etc/logrotate.conf
     167# End of /etc/logrotate.conf</literal>
    168168EOF
    169169
     
    180180
    181181<screen role="root"><userinput>cat &gt; /etc/logrotate.d/sys.log &lt;&lt; EOF
    182 /var/log/sys.log {
     182<literal>/var/log/sys.log {
    183183   # If the log file is larger than 100kb, rotate it
    184184   size   100k
     
    188188      /bin/killall -HUP syslogd
    189189   endscript
    190 }
     190}</literal>
    191191EOF
    192192
     
    196196
    197197<screen role="root"><userinput>cat &gt; /etc/logrotate.d/example.log &lt;&lt; EOF
    198 file1
     198<literal>file1
    199199file2
    200200file3 {
     
    203203    ...
    204204   endscript
    205 }
     205}</literal>
    206206EOF
    207207
  • gnome/platform/gdm.xml

    rdd16ca4d reb9d3f2  
    265265
    266266<screen role="root" revision="sysv"><userinput>cat &gt;&gt; /etc/elogind/logind.conf &lt;&lt; "EOF"
    267 AllowSuspend=no
    268 AllowHibernation=no
     267<literal>AllowSuspend=no
     268AllowHibernation=no</literal>
    269269EOF</userinput></screen>
    270270
  • kde/plasma5/plasma-all.xml

    rdd16ca4d reb9d3f2  
    307307
    308308<screen role="root"><userinput>cat &gt; /etc/pam.d/kde &lt;&lt; "EOF"
    309 # Begin /etc/pam.d/kde
     309<literal># Begin /etc/pam.d/kde
    310310
    311311auth     requisite      pam_nologin.so
     
    319319session  include        system-session
    320320
    321 # End /etc/pam.d/kde
     321# End /etc/pam.d/kde</literal>
    322322EOF
    323323
    324324cat &gt; /etc/pam.d/kde-np &lt;&lt; "EOF"
    325 # Begin /etc/pam.d/kde-np
     325<literal># Begin /etc/pam.d/kde-np
    326326
    327327auth     requisite      pam_nologin.so
     
    335335session  include        system-session
    336336
    337 # End /etc/pam.d/kde-np
     337# End /etc/pam.d/kde-np</literal>
    338338EOF
    339339
    340340cat &gt; /etc/pam.d/kscreensaver &lt;&lt; "EOF"
    341 # Begin /etc/pam.d/kscreensaver
     341<literal># Begin /etc/pam.d/kscreensaver
    342342
    343343auth    include system-auth
    344344account include system-account
    345345
    346 # End /etc/pam.d/kscreensaver
     346# End /etc/pam.d/kscreensaver</literal>
    347347EOF</userinput></screen>
    348348    </sect3>
  • postlfs/filesystems/fuse3.xml

    rdd16ca4d reb9d3f2  
    182182
    183183<screen role="root"><userinput>cat &gt; /etc/fuse.conf &lt;&lt; "EOF"
    184 # Set the maximum number of FUSE mounts allowed to non-root users.
     184<literal># Set the maximum number of FUSE mounts allowed to non-root users.
    185185# The default is 1000.
    186186#
     
    190190# mount options.
    191191#
    192 #user_allow_other
     192#user_allow_other</literal>
    193193EOF</userinput></screen>
    194194
  • postlfs/filesystems/initramfs.xml

    rdd16ca4d reb9d3f2  
    5555
    5656    <screen role="root"><userinput>cat &gt; /sbin/mkinitramfs &lt;&lt; "EOF"
    57 #!/bin/bash
     57<literal>#!/bin/bash
    5858# This file based in part on the mkinitramfs script for the LFS LiveCD
    5959# written by Alexander E. Patrakov and Jeremy Huntwork.
     
    244244rm -rf $WDIR $unsorted
    245245printf "done.\n"
    246 
     246</literal>
    247247EOF
    248248
     
    251251    <screen role="root"><userinput>mkdir -p /usr/share/mkinitramfs &amp;&amp;
    252252cat &gt; /usr/share/mkinitramfs/init.in &lt;&lt; "EOF"
    253 #!/bin/sh
     253<literal>#!/bin/sh
    254254
    255255PATH=/bin:/usr/bin:/sbin:/usr/sbin
     
    358358
    359359exec switch_root /.root "$init" "$@"
    360 
     360</literal>
    361361EOF</userinput></screen>
    362362
  • postlfs/security/consolekit.xml

    rdd16ca4d reb9d3f2  
    219219
    220220<screen role="root"><userinput>cat &gt; /usr/lib/ConsoleKit/run-session.d/pam-foreground-compat.ck &lt;&lt; "EOF"
    221 #!/bin/sh
     221<literal>#!/bin/sh
    222222TAGDIR=/var/run/console
    223223
     
    235235    sed -i "\%^$CK_SESSION_ID\$%d" "$TAGFILE"
    236236    [ -s "$TAGFILE" ] || rm -f "$TAGFILE"
    237 fi
     237fi</literal>
    238238EOF
    239239chmod -v 755 /usr/lib/ConsoleKit/run-session.d/pam-foreground-compat.ck</userinput></screen>
  • postlfs/security/libcap.xml

    rdd16ca4d reb9d3f2  
    9898<screen role="root"><userinput>mv -v /etc/pam.d/system-auth{,.bak} &amp;&amp;
    9999cat &gt; /etc/pam.d/system-auth &lt;&lt; "EOF" &amp;&amp;
    100 # Begin /etc/pam.d/system-auth
     100<literal># Begin /etc/pam.d/system-auth
    101101
    102 auth      optional    pam_cap.so
     102auth      optional    pam_cap.so</literal>
    103103EOF
    104104tail -n +3 /etc/pam.d/system-auth.bak &gt;&gt; /etc/pam.d/system-auth</userinput></screen>
  • postlfs/security/linux-pam.xml

    rdd16ca4d reb9d3f2  
    190190
    191191cat &gt; /etc/pam.d/other &lt;&lt; "EOF"
    192 auth     required       pam_deny.so
     192<literal>auth     required       pam_deny.so
    193193account  required       pam_deny.so
    194194password required       pam_deny.so
    195 session  required       pam_deny.so
     195session  required       pam_deny.so</literal>
    196196EOF</userinput></screen>
    197197
  • postlfs/virtualization/qemu.xml

    rdd16ca4d reb9d3f2  
    525525<screen role="root"
    526526        revision="systemd"><userinput>cat &gt;&gt; /etc/sysctl.d/60-net-forward.conf &lt;&lt; EOF
    527 net.ipv4.ip_forward=1
     527<literal>net.ipv4.ip_forward=1</literal>
    528528EOF</userinput></screen>
    529529
  • pst/scanning/sane.xml

    rdd16ca4d reb9d3f2  
    296296
    297297<screen role="root"><userinput>cat &gt;&gt; /etc/sane.d/net.conf &lt;&lt; "EOF"
    298 connect_timeout = 60
    299 &lt;server_ip&gt;
     298<literal>connect_timeout = 60
     299&lt;server_ip&gt;</literal>
    300300EOF</userinput></screen>
    301301
     
    320320
    321321cat &gt; /usr/share/applications/xscanimage.desktop &lt;&lt; "EOF" &amp;&amp;
    322 [Desktop Entry]
     322<literal>[Desktop Entry]
    323323Encoding=UTF-8
    324324Name=XScanImage - Scanning
     
    328328Terminal=false
    329329Type=Application
    330 Categories=Application;Graphics
     330Categories=Application;Graphics</literal>
    331331EOF
    332332
  • x/dm/lxdm.xml

    rdd16ca4d reb9d3f2  
    309309 
    310310<screen role="root"><userinput>cat &gt;&gt; /etc/elogind/logind.conf &lt;&lt; "EOF"
    311 AllowSuspend=no
    312 AllowHibernation=no
     311<literal>AllowSuspend=no
     312AllowHibernation=no</literal>
    313313EOF</userinput></screen>
    314314
  • x/installing/xorg-config.xml

    rdd16ca4d reb9d3f2  
    268268
    269269<screen role="root"><userinput>cat &gt; /etc/X11/xorg.conf.d/xkb-defaults.conf &lt;&lt; "EOF"
    270 Section "InputClass"
     270<literal>Section "InputClass"
    271271    Identifier "XKB Defaults"
    272272    MatchIsKeyboard "yes"
    273273    Option "XkbLayout" "fr"
    274274    Option "XkbOptions" "terminate:ctrl_alt_bksp"
    275 EndSection
     275EndSection</literal>
    276276EOF</userinput></screen>
    277277
     
    294294
    295295<screen role="root"><userinput>cat &gt; /etc/X11/xorg.conf.d/videocard-0.conf &lt;&lt; "EOF"
    296 Section "Device"
     296<literal>Section "Device"
    297297    Identifier  "Videocard0"
    298298    Driver      "radeon"
     
    300300    BoardName   "ATI Radeon 7500"
    301301    Option      "NoAccel" "true"
    302 EndSection
     302EndSection</literal>
    303303EOF</userinput></screen>
    304304
     
    310310
    311311<screen role="root"><userinput>cat &gt; /etc/X11/xorg.conf.d/server-layout.conf &lt;&lt; "EOF"
    312 Section "ServerLayout"
     312<literal>Section "ServerLayout"
    313313    Identifier     "DefaultLayout"
    314314    Screen      0  "Screen0" 0 0
    315315    Screen      1  "Screen1" LeftOf "Screen0"
    316316    Option         "Xinerama"
    317 EndSection
     317EndSection</literal>
    318318EOF</userinput></screen>
    319319
  • x/installing/xorg7.xml

    rdd16ca4d reb9d3f2  
    125125
    126126<screen role="root"><userinput>cat &gt; /etc/profile.d/xorg.sh &lt;&lt; EOF
    127 XORG_PREFIX="$XORG_PREFIX"
     127<literal>XORG_PREFIX="$XORG_PREFIX"
    128128XORG_CONFIG="--prefix=\$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var --disable-static"
    129 export XORG_PREFIX XORG_CONFIG
     129export XORG_PREFIX XORG_CONFIG</literal>
    130130EOF
    131131chmod 644 /etc/profile.d/xorg.sh</userinput></screen>
     
    154154
    155155<screen role="root"><userinput>cat &gt;&gt; /etc/profile.d/xorg.sh &lt;&lt; "EOF"
    156 
     156<literal>
    157157pathappend $XORG_PREFIX/bin             PATH
    158158pathappend $XORG_PREFIX/lib/pkgconfig   PKG_CONFIG_PATH
     
    165165ACLOCAL="aclocal -I $XORG_PREFIX/share/aclocal"
    166166
    167 export PATH PKG_CONFIG_PATH ACLOCAL LIBRARY_PATH C_INCLUDE_PATH CPLUS_INCLUDE_PATH
     167export PATH PKG_CONFIG_PATH ACLOCAL LIBRARY_PATH C_INCLUDE_PATH CPLUS_INCLUDE_PATH</literal>
    168168EOF</userinput></screen>
    169169
  • x/lib/gtk+2.xml

    rdd16ca4d reb9d3f2  
    212212
    213213<screen><userinput>cat &gt; ~/.gtkrc-2.0 &lt;&lt; "EOF"
    214 include "/usr/share/themes/<replaceable>Glider</replaceable>/gtk-2.0/gtkrc"
    215 gtk-icon-theme-name = "<replaceable>hicolor</replaceable>"
     214<literal>include "/usr/share/themes/<replaceable>Glider</replaceable>/gtk-2.0/gtkrc"
     215gtk-icon-theme-name = "<replaceable>hicolor</replaceable>"</literal>
    216216EOF</userinput></screen>
    217217
     
    229229
    230230<screen role="root"><userinput>cat &gt; /etc/gtk-2.0/gtkrc &lt;&lt; "EOF"
    231 include "/usr/share/themes/<replaceable>Clearlooks</replaceable>/gtk-2.0/gtkrc"
    232 gtk-icon-theme-name = "<replaceable>elementary</replaceable>"
     231<literal>include "/usr/share/themes/<replaceable>Clearlooks</replaceable>/gtk-2.0/gtkrc"
     232gtk-icon-theme-name = "<replaceable>elementary</replaceable>"</literal>
    233233EOF</userinput></screen>
    234234
  • xsoft/graphweb/seamonkey.xml

    rdd16ca4d reb9d3f2  
    409409
    410410cat &gt; /usr/share/applications/seamonkey.desktop &lt;&lt; "EOF"
    411 [Desktop Entry]
     411<literal>[Desktop Entry]
    412412Encoding=UTF-8
    413413Type=Application
     
    418418Categories=Network;GTK;Application;Email;Browser;WebBrowser;News;
    419419StartupNotify=true
    420 Terminal=false
     420Terminal=false</literal>
    421421EOF
    422422
Note: See TracChangeset for help on using the changeset viewer.