فهرست منبع

Restart zabbix-agent on upgrades

Emmanuel Bouthenot 10 سال پیش
والد
کامیت
37029035c9
1فایلهای تغییر یافته به همراه15 افزوده شده و 0 حذف شده
  1. 15 0
      debian/zabbix-plugins-client.postinst

+ 15 - 0
debian/zabbix-plugins-client.postinst

@@ -0,0 +1,15 @@
+#!/bin/sh
+
+#
+# Postinst for zabbix-plugins-client
+#
+
+set -e
+
+if [ -x "$(which zabbix_agent 2>/dev/null)" ]; then
+    invoke-rc.d zabbix-agent restart || true
+fi
+
+#DEBHELPER#
+
+exit 0