Bob Tanner

Results 21 comments of Bob Tanner

To my devcontainer Dockerfile I added ``` ENV DENO_DIR=/workspaces/.deno-dir ``` Seems to work around the issue.

Same test results with macOS 26 ``` $ sw_vers ProductName: macOS ProductVersion: 26.0 BuildVersion: 25A5338b ``` I was not sure if this was an issue or a "personal problem", I...

Slightly updated playbook ``` --- - name: Testing hosts: all gather_facts: true become: true tasks: - name: Update ansible.builtin.apt: update_cache: true - name: Install ansible.builtin.apt: name: - curl - gpg...

Same problem on debian13, output with display.debug() enabled Shouldn't the `_low_level_execute_command() done: rc=0, stdout=, stderr=` have the command output? ``` 30732 1755293426.50905: opening command with Popen() EXEC ['/usr/bin/docker', b'exec', b'-i',...

Adding more display.debug(), looks like stdout data is being returned from self._connection.exec_command() ``` python rc, stdout, stderr = self._connection.exec_command( cmd, in_data=in_data, sudoable=sudoable ) display.debug( "_connection.exec_command() done: rc=%d, stdout=%s, stderr=%s" %...

Fedora42, same problem. converge.yml ``` - name: Update dnf cache (Fedora workaround) raw: | dnf makecache --quiet become: true - name: Package update dnf cache ansible.builtin.dnf: update_cache: yes ``` molecule.yml...

In `docker.py:exec_command()` ```python local_cmd = [to_bytes(i, errors='surrogate_or_strict') for i in local_cmd] ``` value is ``` [b'/usr/bin/docker', b'exec', b'-i', b'trixie', b'/bin/sh', b'-c', b"/bin/sh -c '/usr/bin/python3.13 /tmp/.ansible/tmp/ansible-tmp-1755380588.2208173-36054-200456832902368/AnsiballZ_apt.py && sleep 0'"] ``` I...

I am confident the `AnsiballZ_apt.py` is sending back valid JSON. Edit basic.py added _debug to exit_json() ```python def exit_json(self, **kwargs): ''' return from the module, without error ''' self.do_cleanup_files() self._return_formatted(kwargs)...

Been discussing this issue over at the [Ansible Forums](https://forum.ansible.com/t/module-failure-no-start-of-json-char-found/44275) and getting wires crossed. The problem is not just molecule. I think the problem is docker on ARM64 macOS. Here is...

Same testing playbook ```ansible --- - name: Testing hosts: all gather_facts: true become: true tasks: - name: Update ansible.builtin.apt: update_cache: true - name: Install ansible.builtin.apt: name: - curl - gpg...