slackbuilds_ponce/network/ptokax/doinst.sh
mara 3af05a73db network/ptokax: Added (Direct Connect Peer-To-Peer sharing network).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2014-03-12 12:42:49 -05:00

32 lines
876 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.ptokax.new
config etc/ptokax/cfg/BanList.xml.new
config etc/ptokax/cfg/Motd.txt.new
config etc/ptokax/cfg/Profiles.xml.new
config etc/ptokax/cfg/RegisteredUsers.xml.new
config etc/ptokax/cfg/ReservedNicks.xml.new
config etc/ptokax/cfg/Scripts.xml.new
config etc/ptokax/cfg/Settings.xml.new