summaryrefslogtreecommitdiffstats
path: root/system/collectd/doinst.sh
diff options
context:
space:
mode:
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 6359977249..8684b492f8 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() {