diff options
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 |