#! /bin/sh set -e case "$1" in purge) # We don't remove the colord and scanner users on purge. # This should change once bug #621833 is resolved. # Remove colord's state directory rm -rf /var/lib/colord ;; esac # Automatically added by dh_installsystemd/13.14.1 if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then systemctl --system daemon-reload >/dev/null || true fi # End automatically added section exit 0