summaryrefslogtreecommitdiffstats
path: root/system/icinga-web/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'system/icinga-web/doinst.sh')
-rw-r--r--system/icinga-web/doinst.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/system/icinga-web/doinst.sh b/system/icinga-web/doinst.sh
deleted file mode 100644
index 54934b61ec..0000000000
--- a/system/icinga-web/doinst.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-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...
-}
-
-config etc/httpd/extra/icinga-web.conf.new
-
-find etc/icinga-web -type f -name '*.new' \
- | while read new ; do config $new ; done