[SCM] kscreenlocker packaging branch, master, updated. debian/5.8.7-1-16-g973950f
Maximiliano Curia
maxy at moszumanska.debian.org
Mon Aug 28 13:51:56 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/plasma/kscreenlocker.git;a=commitdiff;h=e1dcf90
The following commit has been merged in the master branch:
commit e1dcf903d53bfb5cb76b8d02480c68ca05639456
Author: Jonathan Riddell <jr at jriddell.org>
Date: Thu Mar 9 10:04:15 2017 +0000
restart kscreenlocker incase it starts during upgrade - a kscreenlocker_greet started in Plasma 5.9 won't be able to unlock with a kcheckpass from Plasma 5.10
---
debian/libkscreenlocker5.postinst | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/debian/libkscreenlocker5.postinst b/debian/libkscreenlocker5.postinst
new file mode 100644
index 0000000..bc15a6b
--- /dev/null
+++ b/debian/libkscreenlocker5.postinst
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+
+ # restart kscreenlocker incase it starts during upgrade
+ # "a kscreenlocker_greet started in Plasma 5.9 won't be able to unlock with a kcheckpass from Plasma 5.10"
+ killall kscreenlocker_greet
+ ;;
+
+ abort-upgrade|abort-deconfigure|abort-remove)
+ ;;
+
+ *)
+ echo "$0 called with unknown argument \`$1'" 1>&2
+ exit 1
+ ;;
+esac
+
+exit 0
--
kscreenlocker packaging
More information about the pkg-kde-commits
mailing list