#!/bin/sh

set -e

init_script_error_handler()
{
	return 0
}

# Automatically added by dh_installinit/13.6ubuntu1
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = remove ] && [ -x "/etc/init.d/isc-dhcp-server" ] ; then
	invoke-rc.d isc-dhcp-server stop || exit 1
fi
# End automatically added section
# Automatically added by dh_systemd_start/13.6ubuntu1
if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then
	deb-systemd-invoke stop 'isc-dhcp-server6.service' >/dev/null || true
fi
# End automatically added section


exit 0
