Klaus Frank

Results 278 comments of Klaus Frank

You can have a look at the API docs yourself https://demo.netbox.dev/api/docs But speaking of it, I probably should have a look at what happened to that proposal from a dev...

Found workaround for now: ``` file_asset = Jekyll::StaticFile.new(site, File.expand_path(base), File.dirname(input), File.basename(input)) unless site.pages.map(&:path).include?(file_asset.url.delete_prefix('/')) text = File.read(file_asset.path) output_jekyll_file = Jekyll::PageWithoutAFile.new(site, __dir__, File.dirname(file_asset.url), File.basename(file_asset.url)) output_page = output_jekyll_file.tap do |obj| obj.content = text.gsub(/url\(fonts/,...

@pgassmann either it is broken again with version 3.6.0 of community.docker, or your suggestion doesn't work. I've pinned all of the collections into my project and it just broke after...

On the controller I've `docker-compose==1.29.2` pinned within the requirements.txt. Apparently that isn't enough. Do I need to pin it on the target as well? That could be a bit annoying...

Same here. As discussed in IRC right now just having `wait_for` and `wait_for_connection` is not enough. Scenario, a task is executed that performs an unknown number of reboots but drops...

Workaround for now is very ugly but kinda working: ```yaml - command: >- ansible localhost --connection community.vmware.vmware_tools -e ansible_connection=community.vmware.vmware_tools -e ansible_shell_type="powershell" -e ansible_become=false -e ansible_vmware_host="{{ vcenter_hostname }}" -e ansible_vmware_user="{{ vcenter_username...

Interesting, does this also explain why winget doesn't wait in this case? https://github.com/microsoft/winget-pkgs/issues/77958#issuecomment-1884121499 If tracking all the child processes that were launched by winget is too hard, how about just...

Also on another note, shouldn't setting DEBUG_PROCESS on the installer process while launching it grant us the ability to get the entire child process tree? I just checked it's documentation...

@QueerCodingGirl Actually, it is still slightly relevant in Germany. The pharmacy could have to order your medication, and you've to go there a 2nd time (often same day, though), or...

We may need to move the issue over to libnetwork. I just noticed, that within there [ipam documentation](https://github.com/docker/libnetwork/blob/master/docs/ipam.md) it says: > If the list of IPv4 configurations is empty, libnetwork...