Allow passwordless login for user "user" (when using 'sudo xl console') for images being upgraded.

Thanks to @marmarek for help with this fix.
Fixes https://github.com/QubesOS/qubes-issues/issues/1130.
This commit is contained in:
Patrick Schleizer 2015-08-27 17:30:02 +00:00
parent c6fa6c9b19
commit 313860e02c

View File

@ -68,6 +68,11 @@ if [ "$1" = "upgrade" ] ; then
fi
fi
fi
## Allow passwordless login for user "user" (when using 'sudo xl console').
## https://github.com/QubesOS/qubes-issues/issues/1130
if grep -q '^user:\!:' /etc/shadow ; then
passwd user -d >/dev/null || true
fi
fi
# dh_installdeb will replace this with shell code automatically