We were setting the admin password to be the value of rootpw instead of adminpw rhbz#727563 Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-early | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 11911b1..568c987 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -700,7 +700,7 @@ start_ovirt_early () { if [ -n "$adminpw" ]; then log "Setting temporary admin password: $adminpw" unmount_config /etc/passwd /etc/shadow - /usr/sbin/usermod -p "$rootpw" admin + /usr/sbin/usermod -p "$adminpw" admin chage -d 0 admin fi if [ -n "$rootpw" ]; then -- 1.7.4.4