Matt Martz

Results 336 comments of Matt Martz

This would also be fairly trivial to implement with just running `apt-mark`: ```yaml - name: Get list of packages on hold command: apt-mark showhold register: apt_mark_hold changed_when: false - name:...

I cannot reproduce this issue. Using mitmproxy, started with `mitmproxy --proxyauth=user:pass --port 443`, and replacing `proxy.url` with `127.0.0.1` and everything is working as expected. I've added the following for added...

I am still looking at this, but it will be a while before I likely have any updates.

After digging through cpython code, it is now apparent that cpython does not actually natively support this. The `CONNECT` tunneling is done without SSL/TLS, before `wrap_socket` is called. I'll dig...

As mentioned above, `http.client` and by extension `urllib.request` do not support this functionality. On top of that neither does the `ssl` module within cpython. In order to implement this `http.client.HTTPSConnection`,...

The cause of this behavior is that the task defintion is only `post_validated` 1 time, which is when the task args are templated. So before the `set_fact` task action plugin...

Ultimately, the work around would be to use a module instead of a lookup. For the file example you could use slurp in 2 tasks: ```yaml - slurp: path: foo.txt...

Classifying this backport as general, and not critical.

> but especially in this case, it feels like we should just pass the encoding and/or error mode we want to run_command to get the actual encoded shape we want...

I've moved to just using `errors` with `run_command`. Right now it's just using `replace`, but I can look at custom error handlers.