Changeset 3b0f105 for kde/plasma5


Ignore:
Timestamp:
12/11/2016 07:13:05 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0456d3b
Parents:
5f82ad58
Message:

Update to Business-ISSN-1.002 (Perl module).
Update to Business-ISMN-1.131 (perl module).
Update to shared-mime-info-1.8.
Add Linux-PAM configureation to Plasma.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kde/plasma5/plasma-all.xml

    r5f82ad58 r3b0f105  
    263263
    264264  </sect2>
     265
     266  <sect2 role="configuration">
     267    <title>Configuring Plasma</title>
     268
     269    <sect3>
     270      <title>Linux PAM Configuration</title>
     271
     272      <para>
     273        If you built Plasma with the recommended <application>Linux
     274        PAM</application> support, create necessary configuration files by
     275        running the following commands as the <systemitem
     276        class="username">root</systemitem> user:
     277      </para>
     278
     279<screen role="root"><userinput>cat &gt;&gt; /etc/pam.d/kde &lt;&lt; "EOF"
     280# Begin /etc/pam.d/kde
     281
     282auth     requisite      pam_nologin.so
     283auth     required       pam_env.so
     284
     285auth     required       pam_succeed_if.so uid &gt;= 1000 quiet
     286auth     include        system-auth
     287
     288account  include        system-account
     289password include        system-password
     290session  include        system-session
     291
     292# End /etc/pam.d/kde
     293EOF
     294
     295cat &gt; /etc/pam.d/kde-np &lt;&lt; "EOF"
     296# Begin /etc/pam.d/kde-np
     297
     298auth     requisite      pam_nologin.so
     299auth     required       pam_env.so
     300
     301auth     required       pam_succeed_if.so uid &gt;= 1000 quiet
     302auth     required       pam_permit.so
     303
     304account  include        system-account
     305password include        system-password
     306session  include        system-session
     307
     308# End /etc/pam.d/kde-np
     309EOF
     310
     311cat &gt; /etc/pam.d/kscreensaver &lt;&lt; "EOF"
     312# Begin /etc/pam.d/kscreensaver
     313
     314auth    include system-auth
     315account include system-account
     316
     317# End /etc/pam.d/kscreensaver
     318EOF</userinput></screen>
     319    </sect3>
     320  </sect2>
     321
    265322  <sect2 role="starting">
    266323    <title>Starting Plasma5</title>
Note: See TracChangeset for help on using the changeset viewer.