Alex Kavanagh
Alex Kavanagh
@om26er yes, the project is definitely being maintained; sorry if we've been a bit slow to get around to this. It's probably better to leave the `client` being set to...
I've checked the API documents [here](https://github.com/lxc/lxd/blob/master/doc/rest-api.md#10containersnamebackupsnameexport) and there doesn't appear to be an option for that, sadly.
So, I asked upstream, and there is a way of doing it on the JSON API. Essentially: 1. The API is at https://lxd.readthedocs.io/en/latest/rest-api/#10containersnamebackups 2. You create the backup using the...
Are there no error messages? What is the container? There's really not a lot to go on here to help you.
Thanks for the update. The warnings are because LXD has grown some new attributes on some of the models, and pylxd is unaware of them. You can silence them by...
You are hitting the "lxd has a new attribute that pylxd doesn't know about". It's a warning to indicate that an Operation now has a location attribute. it's nothing to...
`Popen(...)` by default connects the stdin, stdout and stderr to the parent process' (i.e. your script's) stdin / stdout. Therefore, the `print("OKKKKKK")` has no where to go. So if the...
Yes, this is a 3.x feature added via the 'clustering' API extension. The 'clustering' extension affects a number of areas: containers, storage-pools, and networks. (Note for implementation: remember to check...
API can't connect to LXD socket on Fedora 30 if installed from GANTO repository (official procedure)
I agree with the `os.path.exists(...)` rather than `isfile(...)`. I think the `isfile()` is an error, when it was introduced. Patches welcome, please, if you have the time? As a work...
This is great; unfortunately, I can't merge it yet, as due to an unrelated issue, it won't pass its integration tests. See #379 for more details. When that's sorted, we...