Katze

Results 105 comments of Katze

Furthermore, large parts of the README seem to have been typed manually instead of actually copy&pasting output, as can be seen here: ``` > python uds.py list "18" Name Size...

I suspected that already so I had the idea to abort automatically if the program asks for input or to read input in the `lxc` routine from _stdin_ and write...

That could be given as a command line option, but I think that at least stderr should be accessible. Multiple processes using the same stderr should be perfectly fine (just...

I guess one would need to have the error handling inside the command itself then.

Seems I've learned a lot over the past year: ```bash lxc list --format json | jq '.[].name' ``` and similar things are your friend. Yes, of course filtering on LXD's...

Ah, yeah, sorry, apparently I totally missed the point.… Here's some code for that too: ```bash lxc list --format json | jq -r '.[].name | select(test("^po"))' | xargs echo lxc...

Regarding the output format, we've got similar tooling at work, and for output from multiple machines simultaneously, there is not *perfect* solution (unless you actually split the output into several...

My current workaround is this: ```yaml ifupdown__custom_files: - dest: '/etc/network/interfaces.d/include-config' owner: 'root' group: 'root' mode: '0644' content: | # Include actual files, see https://github.com/debops/debops/issues/1846 source /etc/network/interfaces.config.d/* ``` *Edit*: and this:...

I'm currently running into the same issue on my local host, which is IPv6 only. Quoting the defaults: https://github.com/debops/debops/blob/526110b3073d4855395cfa5c7879674db6a700f6/ansible/roles/cron/defaults/main.yml#L67-L78 Considering that I have neither IPv4 addresses nor IPv4 routes I...

Notice: I haven't had access to the phone on which I could reproduce this so anyone being able to reproduce this is very welcome to take over this issue.