31 lines
633 B
Bash
31 lines
633 B
Bash
# $RCSfile: doinst.sh,v $
|
|
# $Revision: 1.9 $
|
|
# $Date: 2023-05-11 07:58:15+01 $
|
|
# DW
|
|
|
|
config() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
|
rm $NEW
|
|
fi
|
|
}
|
|
|
|
preserve_perms() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
if [ -e $OLD ]; then
|
|
cp -a $OLD ${NEW}.incoming
|
|
cat $NEW > ${NEW}.incoming
|
|
mv ${NEW}.incoming $NEW
|
|
fi
|
|
config $NEW
|
|
}
|
|
|
|
preserve_perms etc/rc.d/rc.pyspf-milter.new
|
|
|
|
config etc/python-policyd-spf/policyd-spf.conf.new
|
|
config etc/pyspf-milter/pyspf-milter.conf.new
|