aboutsummaryrefslogtreecommitdiff
path: root/system/collectd/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2022-02-11 21:36:40 -0500
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-13 09:17:45 +0700
commit9758714daeebc2587ba39dcc62eeb76fc724f1b7 (patch)
tree7221885e09cb37212b7bb613ff38396a99780728 /system/collectd/doinst.sh
parentbf226cca5f35644797f6547594fa4988021583bc (diff)
system/collectd: Updated for version 5.12.0.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/collectd/doinst.sh')
-rw-r--r--system/collectd/doinst.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/system/collectd/doinst.sh b/system/collectd/doinst.sh
index 6359977249b6e..8684b492f8560 100644
--- a/system/collectd/doinst.sh
+++ b/system/collectd/doinst.sh
@@ -1,14 +1,11 @@
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() {