mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
25db2752c4
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
16 lines
440 B
Bash
16 lines
440 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/prosody/migrator.cfg.lua.new
|
|
config etc/prosody/prosody.cfg.lua.new
|
|
config etc/prosody/certs/localhost.key.new
|
|
config etc/prosody/certs/localhost.cert.new
|
|
config etc/prosody/certs/Makefile.new
|
|
config etc/prosody/certs/openssl.cnf.new
|