#!/bin/sh -e case "$1" in remove|upgrade|deconfigure) # Automatically added by dh_installinit if [ -x "/etc/init.d/masterkey-lui-zookeeper" ]; then invoke-rc.d masterkey-lui-zookeeper stop || exit $? fi # End automatically added section ;; failed-upgrade) ;; *) echo "prerm called with unknown argument '$1'" >&2 exit 1 ;; esac exit 0