#!/bin/sh -e set -e case "$1" in configure) # restart kscreenlocker in case 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" # When killed kscreenlocker_greet is relaunched killall kscreenlocker_greet || true ;; abort-upgrade|abort-deconfigure|abort-remove) ;; *) echo "$0 called with unknown argument \`$1'" 1>&2 exit 1 ;; esac exit 0