Changeset 07f0c976


Ignore:
Timestamp:
08/01/2009 04:46:25 AM (15 years ago)
Author:
Wayne Blaszczyk <wblaszcz@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
a44b9c0
Parents:
49f7d8b
Message:

Fixed user and group conflict and other issues for PolicyKit. Fixed minor format presentation with linux-pam

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

Location:
postlfs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • postlfs/config/users.xml

    r49f7d8b r07f0c976  
    7878        <row><entry>apache  </entry><entry>25</entry><entry>25</entry></row>
    7979        <row><entry>smmsp   </entry><entry>26</entry><entry>26</entry></row>
     80        <row><entry>polkituser</entry><entry>27</entry><entry>27</entry></row>
    8081        <!-- <row><entry>courier </entry><entry>30</entry><entry>30</entry></row> -->
    8182        <row><entry>exim    </entry><entry>31</entry><entry>31</entry></row>
  • postlfs/security/linux-pam.xml

    r49f7d8b r07f0c976  
    6565    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    6666    <itemizedlist spacing='compact'>
    67       <listitem>
    68         <para>Optional documentation: <ulink url="&linux-pam-docs-download;"/></para>
    69       </listitem>
    70       <listitem>
    71         <para>Download MD5sum: &linux-pam-docs-md5sum;</para>
     67    <title>Optional Documentation</title>
     68      <listitem>
     69        <para>Download (HTTP): <ulink url="&linux-pam-docs-download;"/></para>
     70      </listitem>
     71      <listitem>
     72        <para>Download MD5 sum: &linux-pam-docs-md5sum;</para>
    7273      </listitem>
    7374      <listitem>
  • postlfs/security/policykit.xml

    r49f7d8b r07f0c976  
    5959
    6060    <bridgehead renderas="sect4">Required</bridgehead>
    61     <para role="required"><xref linkend="glib2"/>,
    62     <xref linkend="dbus-glib"/>,
     61    <para role="required"><xref linkend="dbus-glib"/>,
    6362    <xref linkend="linux-pam"/>,
    6463    <xref linkend="intltool"/>, and
     
    6665
    6766    <bridgehead renderas="sect4">Optional</bridgehead>
    68     <para role="optional"><xref linkend="gtk-doc"/> and
    69     <ulink url="http://blog.supportpro.com/2007/08/se-linux/">SELinux</ulink></para>
     67    <para role="optional"><xref linkend="gtk-doc"/></para>
    7068
    7169    <para condition="html" role="usernotes">User Notes:
     
    7775    <title>Installation of PolicyKit</title>
    7876
     77    <para>It is a requirement to have a dedicated user and group for
     78    <application>PolicyKit</application> to function correctly. Issue the
     79    following commands as the <systemitem class="username">root</systemitem>
     80    user:</para>
     81
     82<screen><userinput>groupadd -g 27 polkituser &amp;&amp;
     83useradd -c "Policy Kit Daemon User" -d /dev/null \
     84    -u 27 -g polkituser -s /bin/false polkituser</userinput></screen>
     85
    7986    <para>Install <application>PolicyKit</application> by running the following
    80     commands:</para>
    81 
    82 <screen><userinput>groupadd -g 26 polkit &amp;&amp;
    83 useradd -c "Policy Kit Daemon User" -d /dev/null \
    84     -u 26 -g polkit -s /bin/false polkit &amp;&amp;
    85 ./configure --prefix=/usr --sysconfdir=/etc \
    86     --libexecdir=/usr/lib/PolicyKit --localstatedir=/var \
    87     --with-polkit-user=polkit --with-polkit-group=polkit &amp;&amp;
     87    commands as an unprivileged user:</para>
     88
     89<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
     90    --libexecdir=/usr/lib/PolicyKit --localstatedir=/var &amp;&amp;
    8891make</userinput></screen>
    8992
Note: See TracChangeset for help on using the changeset viewer.