diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-02-06 01:59:35 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-02-06 08:59:47 +0100 |
commit | 194ec853e8f20fd32d5a91eec74ff77383093f4e (patch) | |
tree | 44c5392ff2bffceadf4c0b62e675c4d35744100c /source/kde/post-install/kde-workspace.post-install | |
parent | bc237eb78dd4cf07fb2b080666bf32e46bc7ba9a (diff) | |
download | current-194ec853e8f20fd32d5a91eec74ff77383093f4e.tar.gz current-194ec853e8f20fd32d5a91eec74ff77383093f4e.tar.xz |
Thu Feb 6 01:59:35 UTC 202020200206015935
a/hwdata-0.332-noarch-1.txz: Upgraded.
a/kernel-firmware-20200204_b791e15-noarch-1.txz: Upgraded.
a/kernel-generic-5.4.18-x86_64-1.txz: Upgraded.
a/kernel-huge-5.4.18-x86_64-1.txz: Upgraded.
a/kernel-modules-5.4.18-x86_64-1.txz: Upgraded.
d/cmake-3.16.4-x86_64-1.txz: Upgraded.
d/icecream-1.3.1-x86_64-1.txz: Upgraded.
d/kernel-headers-5.4.18-x86-1.txz: Upgraded.
k/kernel-source-5.4.18-noarch-1.txz: Upgraded.
xap/xlockmore-5.62-x86_64-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/kde/post-install/kde-workspace.post-install')
-rw-r--r-- | source/kde/post-install/kde-workspace.post-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/kde/post-install/kde-workspace.post-install b/source/kde/post-install/kde-workspace.post-install index 5cbabf507..f6e0c236d 100644 --- a/source/kde/post-install/kde-workspace.post-install +++ b/source/kde/post-install/kde-workspace.post-install @@ -39,6 +39,15 @@ cat $CWD/post-install/kde-workspace/config/Xsession | sed -e "s#/lib#/lib${LIBDI # Add a .new suffix so we don't mangle an existing file: mv $PKG/usr/share/config/kdm/backgroundrc $PKG/usr/share/config/kdm/backgroundrc.new +# Add config file if PAM is installed: +if [ -L /lib${LIBDIRSUFFIX}/libpam.so.? ]; then + mkdir -p $PKG/etc/pam.d + cp -a $CWD/post-install/kde-workspace/config/kde.pamd $PKG/etc/pam.d/kde.new + chown root:root $PKG/etc/pam.d/kde.new + chmod 644 $PKG/etc/pam.d/kde.new + echo "config etc/pam.d/kde.new" >> $PKG/install/doinst.sh +fi + # Move the KDM files someplace FHS compliant: mkdir -p $PKG/etc/kde mv $PKG/usr/share/config/kdm $PKG/etc/kde |