Matt Martz

Results 336 comments of Matt Martz

Need to evaluate module respawn, but it does look like this is available in pypi https://pypi.org/project/python-debian/ Need to confirm whether it's being actively updated.

Ok, that didn't take much time, looks like I see `0.1.36` in ubuntu 22.04, and pypi is actually a little advanced, up to `0.1.49`, but in any case, the dep...

I'm so sorry the bot keeps spamming people! I'll try to get that under control bot_skip

Can you confirm the date of the ansible controller (localhost, where ansible-playbook is being executed from)? Such as with the `date` command, or `python3 -c 'import datetime; print(datetime.datetime.now())'`? My assumption...

Looking at the cpython code, I can only imagine this is a race condition. The date must have been correct when we created a local zip file, but then by...

Another option would to move the datetime creation before creating the `ZipFile`, and passing it into `ZipFile`, which would catch the error.

I think we probably need an example like this: ```yaml - name: Run command using argv with mixed argument formats command: argv: - /path/to/binary - -v - --debug - --longopt...

Potential fix for https://github.com/ansible/ansible/issues/79755

Unfortunately not, at least not easily. As mentioned we have to wait to get rid of setup.py for 2 reasons: 1. entry_points require setuptools 51.0.0, and RHEL8 doesn't have this...