* New upstream release. Closes: #609611
* Get rid of now obsolete patches that are upstream.
* Use the built-in cryptsetup support in systemd.
+ * Don't use systemctl redirect for init scripts with X-Interactive: true
[ Michael Biebl ]
* Update package description
if [ $PPID -ne 1 ] && [ -z "$init" ] && [ -z "$_SYSTEMCTL_SKIP_REDIRECT" ] ; then
case "$0" in
/etc/init.d/*)
- _use_systemctl=1
+ # Don't redirect if the init script has X-Interactive: true
+ if ! grep -qs "X-Interactive: true" "$0"; then
+ _use_systemctl=1
+ fi
;;
esac
else