summaryrefslogtreecommitdiffstats
path: root/network/qbittorrent/doinst.sh
diff options
context:
space:
mode:
author David Woodfall2015-11-25 12:12:26 +0100
committer Willy Sudiarto Raharjo2015-11-28 01:25:59 +0100
commit930330f99242481c2b07ed7d549caca9efe47dee (patch)
tree330417f2223838527ceab4031f6db068a6b7f66e /network/qbittorrent/doinst.sh
parentc70dba9b054066bab035025403a1ba97c9d2439f (diff)
downloadslackbuilds-930330f99242481c2b07ed7d549caca9efe47dee.tar.gz
network/qbittorrent: Added qbittorrent-nox + an rc init script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/qbittorrent/doinst.sh')
-rw-r--r--network/qbittorrent/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/network/qbittorrent/doinst.sh b/network/qbittorrent/doinst.sh
index 3e5691a052..48fc6d14ef 100644
--- a/network/qbittorrent/doinst.sh
+++ b/network/qbittorrent/doinst.sh
@@ -1,3 +1,18 @@
+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...
+}
+
+config etc/rc.d/rc.qbittorrent-nox.new
+
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi