summaryrefslogtreecommitdiffstats
path: root/network/zabbix_agentd/doinst.sh
diff options
context:
space:
mode:
author Niels Horn <niels.horn@gmail.com>2011-09-03 09:20:14 -0400
committer Niels Horn <niels.horn@slackbuilds.org>2011-09-04 21:56:28 -0300
commit73d70b76b23caf27623f7d50123e8a554e969e9d (patch)
tree2026ae076f6301704c915687d778adeca418b41b /network/zabbix_agentd/doinst.sh
parent1e4e641cd0fbca7e48bc02a9069db7709f7143fc (diff)
downloadslackbuilds-73d70b76b23caf27623f7d50123e8a554e969e9d.tar.gz
slackbuilds-73d70b76b23caf27623f7d50123e8a554e969e9d.tar.xz
network/zabbix_agentd: Updated for version 1.8.6.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/zabbix_agentd/doinst.sh')
-rw-r--r--network/zabbix_agentd/doinst.sh18
1 files changed, 11 insertions, 7 deletions
diff --git a/network/zabbix_agentd/doinst.sh b/network/zabbix_agentd/doinst.sh
index 1bc367ca63..7abcca406d 100644
--- a/network/zabbix_agentd/doinst.sh
+++ b/network/zabbix_agentd/doinst.sh
@@ -10,14 +10,18 @@ config() {
# Otherwise, we leave the .new copy for the admin to consider...
}
-# Keep same perms on rc.zabbix_agentd.new:
-if [ -e etc/rc.d/rc.zabbix_agentd ]; then
- cp -a etc/rc.d/rc.zabbix_agentd etc/rc.d/rc.zabbix_agentd.new.incoming
- cat etc/rc.d/rc.zabbix_agentd.new > etc/rc.d/rc.zabbix_agentd.new.incoming
- mv etc/rc.d/rc.zabbix_agentd.new.incoming etc/rc.d/rc.zabbix_agentd.new
-fi
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
-config etc/rc.d/rc.zabbix_agentd.new
+preserve_perms etc/rc.d/rc.zabbix_agentd.new
config etc/zabbix/zabbix_agentd.conf.new
config var/log/zabbix/zabbix_agentd.log.new
rm -f var/log/zabbix/zabbix_agentd.log.new