From: Adrian Iain Lam Date: Fri, 5 Dec 2025 17:23:12 +0000 (+0000) Subject: Fix pkill command (#8) X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=8bc28cae25e9e476b51f286bbbbb9f6d0ac2504e;p=indicator-keyboard-led.git Fix pkill command (#8) --- diff --git a/debian/changelog b/debian/changelog index 5dd8765..22cde04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-keyboard-led (1.2-2) bionic; urgency=medium + + * Fix pkill command in debian scripts + + -- Adrian I Lam 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. diff --git a/debian/postinst b/debian/postinst index 20eacce..d657d2b 100755 --- a/debian/postinst +++ b/debian/postinst @@ -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 diff --git a/debian/prerm b/debian/prerm index 3b1f7fd..8ba51c7 100755 --- a/debian/prerm +++ b/debian/prerm @@ -1,2 +1,2 @@ #!/bin/sh -e -pkill indicator-keyboard-led.py || true +pkill -f indicator-keyboard-led.py || true