Displaying 1 result from an estimated 1 matches for "interfacechangebegin".
Did you mean:
interface_change_begin
2015 Nov 02
1
Re: changeBegin() on python API
...working on python? I was trying to use the following
>> method:
>>
>> if = conn.interfaceLookupByName("name")
>> if.undefine()
>>
>> I saw that changeBegin() does not commit changes, but i can't use it.
>>
> This python API boils down to virInterfaceChangeBegin() but as such it's
> implemented just for netcf backend. So if you're on a distro where udev
> is used instead, the API will return an error.
> Otherwise, this should work:
>
> if = conn.interfaceLookupByName("name")
> if.changeBegin()
> if.undefine()
>
>...