Comment 27 for bug 1896617

Revision history for this message
Corey Bryant (corey.bryant) wrote : Re: Creation of image (or live snapshot) from the existing VM fails if libvirt-image-backend is configured to qcow2 starting from Ussuri

I moved this back to New for upstream nova.

@Lee or anyone else from upstream nova, do you have an opinion on changing the chmod in nova/virt/libvirt/driver.py from:

os.chmod(tmpdir, 0o701)

to:

st = os.stat(tmpdir)
os.chmod(tmpdir, st.st_mode | stat.S_IXOTH)