diff options
author | mara <mara@fail.pp.ua> | 2014-03-09 23:31:08 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-12 12:42:49 -0500 |
commit | 3af05a73db97e5fc081f91f9aba96cb589d69236 (patch) | |
tree | 7953060547c996a4e9853f6ea67d14fedc2591a1 /network/ptokax/doinst.sh | |
parent | d8f613f9da5217299548a392e12f81d7ff02d0dd (diff) | |
download | slackbuilds-3af05a73db97e5fc081f91f9aba96cb589d69236.tar.gz |
network/ptokax: Added (Direct Connect Peer-To-Peer sharing network).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/ptokax/doinst.sh')
-rw-r--r-- | network/ptokax/doinst.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/network/ptokax/doinst.sh b/network/ptokax/doinst.sh new file mode 100644 index 0000000000..aa9f0c920d --- /dev/null +++ b/network/ptokax/doinst.sh @@ -0,0 +1,32 @@ +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 |