[ansible-devel] Getting '/path/to/directory' does not exist, when it does

2022-12-05 Thread Tim
Hi Guys, I have a playbook that gets all of the files within a directory: ``` - name: Find Backup Files to Move find: paths: /path/to/directory recurse: no excludes: 'test-file.tar.gz' delegate_to: localhost register: testfiles ``` This playbook keeps failing with the following message:

[ansible-devel] Within Ansible Automation Platform, getting '/path/to/directory' does not exist, when it does indeed

2022-12-05 Thread Tim
Hi Guys, I have a playbook that gets all of the files within a directory: ``` - name: Find Backup Files to Move find: paths: /path/to/directory recurse: no excludes: 'test-file.tar.gz' delegate_to: localhost register: testfiles ``` This playbook keeps failing with the following message:

[ansible-devel] Privilege Vault (aka Secret Server) lookup plugin

2022-12-19 Thread Tim
ently? Am I over thinking this? Regards, Tim -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-devel+unsubscr...@googlegroups.com. To view

[ansible-devel] Re: Privilege Vault (aka Secret Server) lookup plugin

2022-12-19 Thread Tim
Also, please let me know if OAuth access tokens is the recommended way to authenticate to Privilege Vault. On Monday, December 19, 2022 at 10:04:47 AM UTC-5 Tim wrote: > Morning Everyone > > I am using Delinea Privilege Vault as an external secret vault for the > various credenti

[ansible-devel] case conversion question

2016-06-07 Thread Tim
ld back my own? Thanks, tim -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-devel+unsubscr...@googlegroups.com. For more

Re: [ansible-devel] In-progress MongoDB modules

2016-09-09 Thread Tim
@matt that's a really useful page you've got there. It stays reasonably current??? -tim On Fri, Sep 9, 2016 at 8:13 AM, Matt Martz wrote: > https://github.com/ansible/ansible-modules-extras/pull/265 > > You can check https://ansible.sivel.net/pr/byfile.html for pull r

Re: [ansible-devel] In-progress MongoDB modules

2016-09-09 Thread Tim
great! I will use it too then! thanks! On Fri, Sep 9, 2016 at 9:19 AM, Matt Martz wrote: > @Tim, yes the process runs hourly, so it is pretty much up to date. The > timestamp in the corner shows the last update time. That site is used by > much of the core team currently. > >

[ansible-devel] keeping ansiballz uncompressed files

2016-09-16 Thread Tim
.py When I use explode, it puts them at /Users/trupp/.ansible/tmp/ansible-tmp-1474071763.24-173540062068376/debug_dir And refers to this location in the - output /Users/trupp/.ansible/tmp/ansible-tmp-1474071763.24-173540062068376/some_module.py Thanks, tim -- You received this message

Re: [ansible-devel] Re: keeping ansiballz uncompressed files

2016-09-18 Thread Tim
Cool. Thanks Toshio. I was mousing around the code and saw exactly what you mentioned, that the module itself is extracted. I think this is what I was looking to do, so I think I'm covered. Thanks! -tim On Sun, Sep 18, 2016 at 9:38 AM, tkuratomi wrote: > > > On Friday, September

[ansible-devel] Cli transport question

2016-10-20 Thread Tim
Anyone have any thoughts on how a network module could provide for both the CLI transport as well as the local transport? For instance, if the remote device has both a web service and a console that it could be configured from. Thanks, tim -- You received this message because you are subscribed

[ansible-devel] output var not used?

2016-12-02 Thread Tim
the source for get_command(), which takes an "output" argument, I noticed it doesn't appear to be used anywhere in that method https://github.com/ansible/ansible/blob/devel/lib/ansible/module_utils/netcli.py#L151 Am I reading that right? thanks, tim -- You received this message beca

[ansible-devel] handling BadHostKeyException?

2016-12-05 Thread Tim
Is anyone aware of how to handle the below exception in the *_command network modules? -tim File "/var/folders/jc/9d1188j962931rhqrlm4173w5j5m45/T/ansible_bLe9q4/ansible_modlib.zip/ansible/module_utils/shell.py", line 226, in connect File "/var/folders/jc/9d1188j962931rhqr

[ansible-devel] ansible container and requirements.yml

2016-12-10 Thread Tim
be git https verify related, so I added this to the container.yml file environment: GIT_SSL_NO_VERIFY: 1 but that didnt seem to help. The image I'm using is "ubuntu:xenial" Any idea?? Thanks, -tim -- You received this message because you are subscribed to the Google Grou

[ansible-devel] question about LocalAnsibleModule

2017-02-05 Thread Tim
to call another module on the remote machine from the task's module? I see it used primarily in the network modules right now Thanks, -tim -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group an

[ansible-devel] Fixing architecture-specific gaps in ansible core facts?

2021-06-04 Thread Tim Small
appropriate to add this functionality to ansible/module_utils/facts/hardware/linux.py ? Would these facts be better collected by a module? Thanks, Tim. -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group

[ansible-devel] Reversible include_tasks - A feature for Ansible

2021-11-06 Thread Tim Eisler
aintainers? Thanks Tim Eisler -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-devel+unsubscr...@googlegroups.com. To view this discussion on

Re: [ansible-devel] Reversible include_tasks - A feature for Ansible

2021-11-06 Thread Tim Eisler
Done. Reversible include_tasks · Issue #201 · ansible/proposals (github.com) <https://github.com/ansible/proposals/issues/201> Thanks Tim On Saturday, November 6, 2021 at 4:26:46 PM UTC-5 Felix Fontein wrote: > Hi Tim, > > it might be a good idea to create an issue in >

[ansible-devel] emacs inventory-generic-mode

2016-06-08 Thread Tim Chambers
I got inspired by ini-generic-mode today. (define-generic-mode inventory-generic-mode '(?#) nil '(("^\\(\\[.*\\]\\)" 1 font-lock-constant-face) ("^\\([^=\n\r]*\\)=\\([^\n\r]*\\)$" (1 font-lock-function-name-face) (2 font-lock-variable-name-face))) '("inventory") (list (f

[ansible-devel] Re: emacs inventory-generic-mode

2016-06-09 Thread Tim Chambers
I wrote to Ted via email. I'll update this thread with progress. -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-devel+unsubscr...@googlegroups.co

[ansible-devel] Re: emacs inventory-generic-mode

2016-06-14 Thread Tim Chambers
Follow-up to the thread on the appropriate GNU Emacs list . -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails f

[ansible-devel] Re: emacs inventory-generic-mode

2016-06-15 Thread Tim Chambers
Thanks for commit 299f194 , Ted! -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to ans