Fix pkill command (#8)
authorAdrian Iain Lam <adrianiainlam@users.noreply.github.com>
Fri, 5 Dec 2025 17:23:12 +0000 (17:23 +0000)
committerAdrian Iain Lam <adrianiainlam@users.noreply.github.com>
Fri, 5 Dec 2025 17:32:05 +0000 (17:32 +0000)
debian/changelog
debian/postinst
debian/prerm

index 5dd8765..22cde04 100644 (file)
@@ -1,3 +1,9 @@
+indicator-keyboard-led (1.2-2) bionic; urgency=medium
+
+  * Fix pkill command in debian scripts
+
+ -- Adrian I Lam <me@adrianiainlam.tk>  Fri, 05 Dec 2025 17:29:36 +0000
+
 indicator-keyboard-led (1.2-1) xenial; urgency=medium
 
   * New re-design with icons only instead of labels.
index 20eacce..d657d2b 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh -e
-pkill indicator-keyboard-led.py || true
+pkill -f indicator-keyboard-led.py || true
 
 # modify autostart .desktop file to include debconf results
 . /usr/share/debconf/confmodule
index 3b1f7fd..8ba51c7 100755 (executable)
@@ -1,2 +1,2 @@
 #!/bin/sh -e
-pkill indicator-keyboard-led.py || true
+pkill -f indicator-keyboard-led.py || true