diff options
author | David Woodfall <dave@dawoodfall.net> | 2015-11-25 18:12:26 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-28 07:25:59 +0700 |
commit | 930330f99242481c2b07ed7d549caca9efe47dee (patch) | |
tree | 330417f2223838527ceab4031f6db068a6b7f66e /network/qbittorrent/doinst.sh | |
parent | c70dba9b054066bab035025403a1ba97c9d2439f (diff) | |
download | slackbuilds-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.sh | 15 |
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 |