#!/bin/sh set -e case "${1}" in configure) chown root:doodle /usr/bin/doodled chmod g+s /usr/bin/doodled ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`${1}'" >&2 exit 1 ;; esac # Automatically added by dh_installinit/13.5.2 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -z "${DPKG_ROOT:-}" ] && [ -x "/etc/init.d/doodled" ]; then update-rc.d doodled defaults 22 >/dev/null invoke-rc.d --skip-systemd-native doodled restart || exit 1 fi fi # End automatically added section exit 0