Changeset b785ab29 for server/other


Ignore:
Timestamp:
06/05/2005 09:06:40 PM (19 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
fc290c7
Parents:
0efab06
Message:

Integrated system uid and gid values

into individual packages.

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

Location:
server/other
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • server/other/cvsserver.xml

    r0efab06 rb785ab29  
    108108    and executing the following commands:</para>
    109109
    110 <screen role="root"><userinput>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
     110<screen role="root"><userinput>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false -u 98) &amp;&amp;
    111111echo anonymous: &gt; /srv/cvsroot/CVSROOT/passwd &amp;&amp;
    112112echo anonymous &gt; /srv/cvsroot/CVSROOT/readers</userinput></screen>
     
    195195
    196196    <para><command>(grep anonymous /etc/passwd || useradd anonymous -s
    197     /bin/false)</command>: Check for an existing <systemitem
     197    /bin/false -u 98)</command>: Check for an existing <systemitem
    198198    class="username">anonymous</systemitem> user and create one if not
    199199    found.</para>
  • server/other/leafnode.xml

    r0efab06 rb785ab29  
    7171    if not present:</para>
    7272
    73 <screen role="root"><userinput>groupadd news &amp;&amp;
    74 useradd -c "Leafnode News Server" -d /var/spool/news -g news news</userinput></screen>
     73<screen role="root"><userinput>groupadd -g 36 news &amp;&amp;
     74useradd -c "Leafnode News Server" -d /var/spool/news -g news \
     75        -u 36 news</userinput></screen>
    7576
    7677    <para>Install <application>Leafnode</application> by running the following
  • server/other/svnserver.xml

    r0efab06 rb785ab29  
    4949      user and group with the following commands:</para>
    5050
    51 <screen role="root"><userinput>groupadd svn &amp;&amp;
    52 useradd -c "SVN Owner" -d /home/svn -m -g svn -s /bin/false svn</userinput></screen>
     51<screen role="root"><userinput>groupadd -g 56 svn &amp;&amp;
     52useradd -c "SVN Owner" -d /home/svn -m -g svn -s /bin/false -u 56 svn</userinput></screen>
    5353
    5454      <para>If you plan to have multiple repositories, you should have a
     
    5858      user to that group with the following commands:</para>
    5959
    60 <screen role="root"><userinput>groupadd svntest &amp;&amp;
     60<screen role="root"><userinput>groupadd -g 57 svntest &amp;&amp;
    6161usermod -G svntest svn</userinput></screen>
    6262
Note: See TracChangeset for help on using the changeset viewer.