Commit 86c803e7a56ab0734e8d4a8544b4726d95eaf081

Authored by Wiebe Cazemier
1 parent f1503783

Ignore errors in postrm debian script

This fixes dpkg errors on removal.
Showing 1 changed file with 1 additions and 1 deletions
debian/postrm
... ... @@ -2,5 +2,5 @@
2 2  
3 3 if [[ "$1" != "upgrade" ]]; then
4 4 echo "Disabling FlashMQ systemd service"
5   - systemctl disable flashmq.service
  5 + systemctl disable flashmq.service || echo "Ignoring..."
6 6 fi
... ...