2013-04-28 16:43:08 +02:00
|
|
|
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/prosody.cfg.lua.new
|
2014-04-28 18:17:35 +02:00
|
|
|
config etc/prosody/migrator.cfg.lua.new
|
|
|
|
config etc/prosody/certs/openssl.cnf.new
|
2013-04-28 16:43:08 +02:00
|
|
|
config etc/prosody/certs/localhost.key.new
|
2014-04-28 18:17:35 +02:00
|
|
|
config etc/prosody/certs/example.com.key.new
|
|
|
|
config etc/prosody/certs/example.com.crt.new
|
2018-12-17 17:23:49 +01:00
|
|
|
config etc/prosody/certs/GNUmakefile.new
|
|
|
|
config etc/prosody/certs/makefile.new
|
2014-04-28 18:17:35 +02:00
|
|
|
config etc/prosody/certs/localhost.cnf.new
|
|
|
|
config etc/prosody/certs/localhost.crt.new
|
2015-10-28 17:26:36 +01:00
|
|
|
|
2017-03-15 23:44:46 +01:00
|
|
|
if ! [ -L etc/rc.d/rc.prosody ] ;
|
|
|
|
then
|
|
|
|
rm -f etc/rc.d/rc.prosody
|
|
|
|
ln -s /usr/bin/prosodyctl etc/rc.d/rc.prosody
|
|
|
|
fi
|