fixed postinst/postrm scripts regarding killall feat
[cell-modem-ui] / cell-modem-ui / debian / cell-modem-ui.postrm
index 6507b99..758d69d 100644 (file)
@@ -1,4 +1,6 @@
 #!/bin/sh
 
-killall systemui || true
-
+if [ "$1" = "remove" ]; then
+        echo "Restarting systemui..."
+        killall systemui || true
+fi