mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
2061b4112f
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
15 lines
300 B
Bash
15 lines
300 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
|
|
}
|
|
|
|
CONFIGS="blacklist repo-list spman.conf"
|
|
|
|
for file in $CONFIGS; do
|
|
config etc/spman/${file}.new
|
|
done
|