slackbuilds_ponce/network/prosody/doinst.sh
Gerardo Zamudio 789698d854 network/prosody: Updated for version 0.9.12.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-03-18 06:58:40 +07:00

26 lines
736 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/prosody.cfg.lua.new
config etc/prosody/migrator.cfg.lua.new
config etc/prosody/certs/openssl.cnf.new
config etc/prosody/certs/localhost.key.new
config etc/prosody/certs/example.com.key.new
config etc/prosody/certs/example.com.crt.new
config etc/prosody/certs/Makefile.new
config etc/prosody/certs/localhost.cnf.new
config etc/prosody/certs/example.com.cnf.new
config etc/prosody/certs/localhost.crt.new
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