opensnitch/debian/prerm
Gustavo Iñiguez Goia 8c01d43d45 Workaround to stop and disable service on uninstalling
dh_installsystemd seems to not work for me, so use this WA for now
2020-02-06 23:54:36 +01:00

6 lines
96 B
Bash
Executable file

#!/bin/sh
set -e
service opensnitch stop || true
systemctl disable opensnitch.service || true