Ignore:
Timestamp:
12/02/2002 11:00:41 PM (21 years ago)
Author:
Billy O 'Connor <billyoc@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
f14c264
Parents:
17ced16
Message:

xml cleanups, more <<'s and &&'s.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/other/bind/bind-config.xml

    r17ced16 rfe3b285  
    2626<para>Create the named.conf file with the following commands:</para>
    2727<para><screen><userinput>
    28 cat > /home/named/etc/named.conf << "EOF"
     28cat &gt; /home/named/etc/named.conf &lt;&lt; "EOF"
    2929 options {
    3030     directory "/etc/namedb";
     
    5252<para>Create a zone file with the following contents: </para>
    5353<para><screen><userinput>
    54 cat &gt; /home/named/etc/namedb/pz/127.0.0 &lt;&lt "EOF"
     54cat &gt; /home/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF"
    5555$TTL 3D
    5656@      IN      SOA     ns.local.domain. hostmaster.local.domain. (
     
    6969file.</para></note>
    7070<para><screen><userinput>
    71 cat > /home/named/etc/namedb/root.hints << "EOF"
     71cat &gt; /home/named/etc/namedb/root.hints &lt;&lt; "EOF"
    7272.                       6D  IN      NS      A.ROOT-SERVERS.NET.
    7373.                       6D  IN      NS      B.ROOT-SERVERS.NET.
     
    101101<para>Create the rndc.conf with the following commands:</para>
    102102<para><screen><userinput>
    103 cat > /etc/rndc.conf << "EOF"
     103cat &gt; /etc/rndc.conf &lt;&lt; "EOF"
    104104key rndc_key {
    105105algorithm "hmac-md5";
     
    121121<para><screen><userinput>
    122122cp /etc/resolv.conf /etc/resolv.conf.bak
    123 cat > /etc/resolv.conf << "EOF"
     123cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
    124124search yourdomain.com
    125125nameserver 127.0.0.1
     
    176176<para>Add the run level symlinks:</para>
    177177<para><screen><userinput>
    178 chmod 754 /etc/rc.d/init.d/bind &&
    179 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc0.d/K49bind &&
    180 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc1.d/K49bind &&
    181 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc2.d/K49bind &&
    182 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc3.d/S22bind &&
    183 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc4.d/S22bind &&
    184 ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc5.d/S22bind &&
     178chmod 754 /etc/rc.d/init.d/bind &amp;&amp;
     179ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc0.d/K49bind &amp;&amp;
     180ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc1.d/K49bind &amp;&amp;
     181ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc2.d/K49bind &amp;&amp;
     182ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc3.d/S22bind &amp;&amp;
     183ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc4.d/S22bind &amp;&amp;
     184ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc5.d/S22bind &amp;&amp;
    185185ln -s  /etc/rc.d/init.d/bind /etc/rc.d/rc6.d/K49bind
    186186</userinput></screen></para>
Note: See TracChangeset for help on using the changeset viewer.