mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
a842d4dcdb
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
14 lines
282 B
Bash
14 lines
282 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
|
|
}
|
|
|
|
if [ -f etc/xinetd.d/gophernicus.new ]; then
|
|
config etc/xinetd.d/gophernicus.new
|
|
fi
|
|
|