Lock root password in passwordless-root package

See QubesOS/qubes-issues#5799.

Undo the change to empty password previously performed by that
package.
This commit is contained in:
Paweł Marczewski 2020-05-06 18:03:19 +02:00
parent 212df1d586
commit e52f4f1341
No known key found for this signature in database
GPG Key ID: DE42EE9B14F96465
3 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ pre_install() {
# Add qubes core related fstab entries
echo "xen /proc/xen xenfs defaults 0 0" >> /etc/fstab
usermod -p '' root
usermod -L root
usermod -L user
}

View File

@ -33,8 +33,8 @@ set -e
# https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html or
# the debian-policy package
if [ "$1" = "install" ] ; then
usermod -p '' root
if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then
usermod -L root
fi
# dh_installdeb will replace this with shell code automatically

View File

@ -288,7 +288,7 @@ usermod -L user
%pre passwordless-root
usermod -p '' root
usermod -L root
%install