python-validity/debian/python3-validity.prerm
Viktor Dragomiretskyy 74598ad291 * Use single instance of a systemd service (at least for now)
* Switch to use logger instead of prints
* Catch signals to enforce graceful shutdown
2020-07-13 17:48:00 +12:00

11 lines
174 B
Bash

#! /bin/sh
set -e
if [ -x "/usr/bin/deb-systemd-invoke" ] && [ "$1" = remove ]; then
deb-systemd-invoke stop 'python3-validity.service' || true
fi
#DEBHELPER#
exit 0