summaryrefslogtreecommitdiffstats
path: root/debian/netdata-apache2.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/netdata-apache2.postrm')
-rw-r--r--debian/netdata-apache2.postrm29
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/netdata-apache2.postrm b/debian/netdata-apache2.postrm
deleted file mode 100644
index b69fdbc16..000000000
--- a/debian/netdata-apache2.postrm
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- remove)
- if [ -e /usr/share/apache2/apache2-maintscript-helper ]
- then
- . /usr/share/apache2/apache2-maintscript-helper
-
- apache2_invoke disconf netdata.conf
-
- apache2_reload restart
- fi
- ;;
-
- purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
- ;;
-
- *)
- echo "postrm called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0