Merge "Check the return code when forcing TCG mode with libguestfs"

This commit is contained in:
Zuul 2018-03-12 22:59:13 +00:00 committed by Gerrit Code Review
commit 60e6aa808d
1 changed files with 5 additions and 1 deletions

View File

@ -199,7 +199,11 @@ class VFSGuestFS(vfs.VFS):
try:
if forceTCG:
self.handle.set_backend_settings("force_tcg")
ret = self.handle.set_backend_settings("force_tcg")
if ret != 0:
LOG.warning('Failed to force guestfs TCG mode. '
'guestfs_set_backend_settings returned: %s',
ret)
except AttributeError as ex:
# set_backend_settings method doesn't exist in older
# libguestfs versions, so nothing we can do but ignore