11 lines
174 B
Bash
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
|