mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 01:43:23 +00:00
parallels: switch off offline management feature
which is on by default when a new VM/CT is created. We should do this because this feature can't be controlled by libvirt now and it sets up some iptables rules. So it's better to do this to avoid potential conflict of different set of rules or to avoid unexpected behavior. Signed-off-by: Maxim Nestratov <mnestratov@parallels.com>
This commit is contained in:
parent
5a9b01b36d
commit
ed043768a3
@ -3096,6 +3096,9 @@ prlsdkCreateVm(virConnectPtr conn, virDomainDefPtr def)
|
||||
pret = PrlVmCfg_SetDefaultConfig(sdkdom, srvconf, PVS_GUEST_VER_LIN_REDHAT, 0);
|
||||
prlsdkCheckRetGoto(pret, cleanup);
|
||||
|
||||
pret = PrlVmCfg_SetOfflineManagementEnabled(sdkdom, 0);
|
||||
prlsdkCheckRetGoto(pret, cleanup);
|
||||
|
||||
ret = prlsdkDoApplyConfig(conn, sdkdom, def);
|
||||
if (ret)
|
||||
goto cleanup;
|
||||
|
Loading…
Reference in New Issue
Block a user