2009-08-26 17:00:38 +02:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
2012-09-26 03:10:42 +02:00
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
2009-08-26 17:00:38 +02:00
|
|
|
# If there's no config file by that name, mv it over:
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
2021-01-05 23:42:46 +01:00
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # MOVE IT OVER TO FIX PERMS
|
|
|
|
mv $NEW $OLD
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
2020-02-07 23:32:38 +01:00
|
|
|
|
|
|
|
if [ -r etc/pam.d/xdm.new ]; then
|
|
|
|
config etc/pam.d/xdm.new
|
|
|
|
fi
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
for conffile in \
|
|
|
|
Xaccess Xreset Xresources Xservers Xsession Xsetup_0 Xstartup Xwilling \
|
2013-11-04 18:08:47 +01:00
|
|
|
GiveConsole TakeConsole xdm-config ../app-defaults/Chooser ;
|
2012-09-26 03:10:42 +02:00
|
|
|
do
|
|
|
|
config etc/X11/xdm/${conffile}.new
|
|
|
|
done
|
|
|
|
|
2022-12-07 19:48:07 +01:00
|
|
|
# Prevent a black background for login/password when upgrading from xdm-1.1.1
|
|
|
|
# and ignoring the .new files :-)
|
|
|
|
if ! grep -q inpColor etc/X11/xdm/Xresources ; then
|
|
|
|
echo 'xlogin*inpColor: grey80' >> etc/X11/xdm/Xresources
|
|
|
|
fi
|