#!/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