summaryrefslogtreecommitdiffstats
path: root/bin/exit_hook.service-reload.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/exit_hook.service-reload.sh')
-rwxr-xr-xbin/exit_hook.service-reload.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/exit_hook.service-reload.sh b/bin/exit_hook.service-reload.sh
deleted file mode 100755
index d434b71..0000000
--- a/bin/exit_hook.service-reload.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-echo " + Reloading services..."
-
-for PACKAGE in apache2 haproxy postgresql
-do
- if /usr/sbin/service ${PACKAGE} status > /dev/null 2>&1
- then
- echo -n " + ${PACKAGE}:"
- /usr/sbin/service ${PACKAGE} reload
- echo " done."
- fi
-done