config() { NEW="$1" OLD="$(dirname $NEW)/$(basename $NEW .new)" # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # MOVE IT OVER TO FIX PERMS mv $NEW $OLD fi # Otherwise, we leave the .new copy for the admin to consider... } config etc/X11/app-defaults/Chooser.new config etc/X11/xdm/Xaccess.new config etc/X11/xdm/Xresources.new config etc/X11/xdm/Xservers.new config etc/X11/xdm/xdm-config.new config etc/pam.d/xdm.new config usr/lib/X11/xdm/GiveConsole.new config usr/lib/X11/xdm/TakeConsole.new config usr/lib/X11/xdm/Xreset.new config usr/lib/X11/xdm/Xsession.new config usr/lib/X11/xdm/Xsetup_0.new config usr/lib/X11/xdm/Xstartup.new config usr/lib/X11/xdm/Xwilling.new # 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