summaryrefslogtreecommitdiffstats
path: root/network/zabbix_proxy/doinst.sh
diff options
context:
space:
mode:
author Michal Bialozor <bialyy@o2.pl>2012-12-23 08:14:25 +0100
committer Matteo Bernardini <ponce@slackbuilds.org>2012-12-23 08:14:59 +0100
commitc23d5541e966e7ae99f94849f37017a96e02d2fc (patch)
treef57c79fbc80948155180dafddc22956808b8bd5e /network/zabbix_proxy/doinst.sh
parent11ba92aeec284d5e8c3086daf8cc6f5911fb8350 (diff)
downloadslackbuilds-c23d5541e966e7ae99f94849f37017a96e02d2fc.tar.gz
slackbuilds-c23d5541e966e7ae99f94849f37017a96e02d2fc.tar.xz
network/zabbix_proxy: Updated for version 1.8.15, cleanups.
Noted incompatibility with zabbix_server (small bash related cleanups --ponce) Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/zabbix_proxy/doinst.sh')
-rw-r--r--network/zabbix_proxy/doinst.sh19
1 files changed, 9 insertions, 10 deletions
diff --git a/network/zabbix_proxy/doinst.sh b/network/zabbix_proxy/doinst.sh
index 6216aa17c2..03b7615227 100644
--- a/network/zabbix_proxy/doinst.sh
+++ b/network/zabbix_proxy/doinst.sh
@@ -1,13 +1,13 @@
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...
+ 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() {
@@ -25,4 +25,3 @@ preserve_perms etc/rc.d/rc.zabbix_proxy.new
config etc/zabbix/zabbix_proxy.conf.new
config var/log/zabbix/zabbix_proxy.log.new
rm -f var/log/zabbix/zabbix_proxy.log.new
-