diff options
author | Mikhail Gusarov <dottedmag@debian.org> | 2015-05-16 19:28:57 +0000 |
---|---|---|
committer | Mikhail Gusarov <dottedmag@debian.org> | 2015-05-16 23:51:00 +0000 |
commit | b9cc9d2ffba1170388d3d34846cee0623741761c (patch) | |
tree | daf6c49d438b19de2808d012450929cf6ad3e794 /debian/postrm | |
parent | 463aa1e6775557493a827c872296964e89902e0e (diff) | |
download | rspamd-b9cc9d2ffba1170388d3d34846cee0623741761c.tar.gz rspamd-b9cc9d2ffba1170388d3d34846cee0623741761c.zip |
Restart rspamd on upgrade, stop on removal
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/postrm b/debian/postrm index 0ab952d46..333f2b5af 100644 --- a/debian/postrm +++ b/debian/postrm @@ -6,7 +6,8 @@ if [ "$1" = "purge" ]; then fi if [ -d /run/systemd/system ]; then - systemctl --system daemon-reload >/dev/null || true + deb-systemd-invoke --system daemon-reload >/dev/null || true + deb-systemd-invoke --system stop rspamd.service 2>/dev/null || true fi #DEBHELPER# |