peach-package-builder/conf/templates/go_sbot/DEBIAN/prerm

7 lines
205 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
2022-04-11 20:57:05 +00:00
# Automatically added by cargo-deb
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
deb-systemd-invoke stop go-sbot.service >/dev/null || true
2022-04-11 20:57:05 +00:00
fi
# End automatically added section