Skip to content

Commit 9075ad6

Browse files
committed
Add postrm script to kill the mozillavpn instances when the linux package is uninstalled - fixes VPN-2048 (#3304)
1 parent 7044fc8 commit 9075ad6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

linux/debian/mozillavpn.postrm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
case "$1" in
3+
remove)
4+
killall -q mozillavpn || true
5+
;;
6+
esac
7+
exit 0

0 commit comments

Comments
 (0)