Anyone using freeipa-python here? When I try to use
client.host_mod('myserver.mydomain.at', userclass='SomeUserClass')
the user class is set correctly on the host above but I do get an Exception:
File "./modifyHosts.py", line 34, in <module>
client.host_mod('myserver.mydomain.at', userclass='SomeUserClass')
File
"/usr/local/lib/python3.6/site-packages/python_freeipa/client_meta.py",
line 11192, in host_mod
return self._request(method, _args, _params)
File
"/usr/local/lib/python3.6/site-packages/python_freeipa/client.py", line
335, in _request
parse_error(error)
File
"/usr/local/lib/python3.6/site-packages/python_freeipa/exceptions.py",
line 117, in parse_error
raise exception_class(message, code)
python_freeipa.exceptions.BadRequest: no modifications to be performed
What am I doing wrong?