diff options
Diffstat (limited to 'network/zabbix_proxy/doinst.sh')
-rw-r--r-- | network/zabbix_proxy/doinst.sh | 19 |
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 - |