mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
7793836a6d
patches/packages/netatalk-3.1.14-x86_64-1_slack15.0.txz: Upgraded. Netatalk through 3.1.13 has an afp_getappl heap-based buffer overflow resulting in code execution via a crafted .appl file. For more information, see: https://www.cve.org/CVERecord?id=CVE-2022-45188 (* Security fix *)
28 lines
809 B
Bash
28 lines
809 B
Bash
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 # toss the redundant copy
|
|
rm $NEW
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
|
|
# Keep same perms on rc.atalk.new:
|
|
if [ -e etc/rc.d/rc.atalk ]; then
|
|
cp -a etc/rc.d/rc.atalk etc/rc.d/rc.atalk.new.incoming
|
|
cat etc/rc.d/rc.atalk.new > etc/rc.d/rc.atalk.new.incoming
|
|
mv etc/rc.d/rc.atalk.new.incoming etc/rc.d/rc.atalk.new
|
|
fi
|
|
|
|
config etc/rc.d/rc.atalk.new
|
|
|
|
config etc/netatalk/afp.conf.new
|
|
config etc/netatalk/dbus-session.conf.new
|
|
config etc/netatalk/extmap.conf.new
|
|
|
|
if [ -r etc/pam.d/netatalk.new ]; then
|
|
config etc/pam.d/netatalk.new
|
|
fi
|