Workaround to stop and disable service on uninstalling

dh_installsystemd seems to not work for me, so use this WA for now
This commit is contained in:
Gustavo Iñiguez Goia 2020-02-06 10:12:54 +01:00
parent 998106ef24
commit 8c01d43d45

6
debian/prerm vendored Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
set -e
service opensnitch stop || true
systemctl disable opensnitch.service || true