mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
db8b3116f4
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
17 lines
383 B
Bash
17 lines
383 B
Bash
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
|
|
}
|
|
|
|
config etc/ssmtp/revaliases.new
|
|
config etc/ssmtp/ssmtp.conf.new
|
|
|
|
# If there's no sendmail link, take over:
|
|
if [ ! -r usr/sbin/sendmail ]; then
|
|
( cd usr/sbin ; ln -sf ssmtp sendmail )
|
|
fi
|