1
0
mirror of https://github.com/azlux/dpkg-deb synced 2024-11-23 06:46:18 +00:00
dpkg-deb/sheepit/DEBIAN/prerm
2020-02-24 19:40:16 +01:00

15 lines
304 B
Bash
Executable File

#!/usr/bin/env bash
case "$1" in
upgrade)
[ -d /run/systemd/system/ ] && systemctl stop sheepit
exit 0
;;
*)
[ -d /run/systemd/system/ ] && systemctl stop sheepit
[ -d /run/systemd/system/ ] && systemctl disable sheepit
exit 0
;;
esac