Bug 1143949
Summary: | virt-customize option '--password-crypto' do not work | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Lingfei Kong <lkong> |
Component: | libguestfs | Assignee: | Richard W.M. Jones <rjones> |
Status: | CLOSED ERRATA | QA Contact: | Virtualization Bugs <virt-bugs> |
Severity: | low | Docs Contact: | |
Priority: | medium | ||
Version: | 7.1 | CC: | leiwang, mbooth, ptoscano, tlavigne, wshi |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | libguestfs-1.27.49-1.1.el7 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2015-03-05 13:45:18 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Lingfei Kong
2014-09-18 10:07:31 UTC
*** Bug 1143942 has been marked as a duplicate of this bug. *** This is a misunderstanding of what the --password-crypto option actually does. It only changes the password crypto used by virt-customize, it doesn't change the crypto of the guest itself. I have updated the documentation to make this clearer: https://github.com/libguestfs/libguestfs/commit/e5dd3b08de331b14aee4f86eef373e3c900d8b61 --password-crypto md5|sha256|sha512 When the virt tools change or set a password in the guest, this option sets the password encryption of that password to "md5", "sha256" or "sha512". [...] Note this does not change the default password encryption used by the guest when you create new user accounts inside the guest. If you want to do that, then you should use the --edit option to modify "/etc/sysconfig/authconfig" (Fedora, RHEL) or "/etc/pam.d/common-password" (Debian, Ubuntu). Verify with libguestfs-1.28.1-1.9.el7 Steps to verify: 1. Prepare a rhel guest image: rhel.img 2. Create a user account 'test' on that guest and check its password encryption: $6(sha512) 3. # virt-customize -a rhel.img --password test:password:testpassword20 --password-crypto md5 4. # qemu-kvm -m 1024M -smp 3 -drive file=$PWD/rhel.img -vnc :1 5. Access the guest via vncviewer and login account 'test' with password 'testpassword20' and check its password encryption Results: Can login account 'test' with the new password 'testpassword20', and the password encryption in /etc/shadow is $1(md5) Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHBA-2015-0303.html |