From 8bc28cae25e9e476b51f286bbbbb9f6d0ac2504e Mon Sep 17 00:00:00 2001 From: Adrian Iain Lam Date: Fri, 5 Dec 2025 17:23:12 +0000 Subject: [PATCH] Fix pkill command (#8) --- debian/changelog | 6 ++++++ debian/postinst | 2 +- debian/prerm | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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 -- 2.7.4