1
0
mirror of https://github.com/azlux/dpkg-deb synced 2025-01-18 08:03:30 +00:00
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