blob: 4cac92dbfac9d42e3a8e8a3f356083b950438b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|