So, reducing this to a more simple example:

getLog = ansible.runner.Runner(
    forks=100,
    inventory=ansible.inventory.Inventory('inventory'),
    module_name='command',
    module_args='echo "{{ansible_ssh_host|default(inventory_hostname)}}"',
).run()

In the above, I can confirm that standard variable replacement, just as
used in a playbook, work as expected here:

{'dark': {}, 'contacted': {'127.0.0.1': {u'cmd': [u'echo', u'127.0.0.1'],
u'end': u'2014-10-01 07:40:29.208210', u'stdout': u'127.0.0.1', u'changed':
True, u'start': u'2014-10-01 07:40:29.202530', u'delta': u'0:00:00.005680',
u'stderr': u'', u'rc': 0, 'invocation': {'module_name': 'command',
'module_args': u'echo "127.0.0.1"'}}}}

On Tue, Sep 30, 2014 at 1:11 PM, CJR <[email protected]> wrote:

> All -
>
> I am having hell with this:
>
> getLog = ansible.runner.Runner(
> forks=100,
> inventory=ansible.inventory.Inventory('inventory'),
> module_name='fetch',
> module_args='src=/tmp/logs.tar.gz dest=./output/?????????/logs flat=yes
> validate_md5=no',
> ).run()
>
> In line 5, you can see I put a whole bunch of ?????????.  If I were
> writing a playbook, I would have something like {{ ansible_ssh_host }}
> there.
> I want the IP address of the target so that when everything is done, I
> have all my server logs back on my machine.
>
> I have verified, the logs (/tmp/logs.tar.gz) ARE there, and if I try and
> fetch them without a varible it works...but they all overwrite each other.
>
> Anybody have an idea??
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/b591d1fa-7947-4698-8d3c-e483df418a7d%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/b591d1fa-7947-4698-8d3c-e483df418a7d%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Matt Martz
@sivel
sivel.net

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAD8N0v-tWd2kurPwuaPwAzpHd7LChAcuT%2BgrtiRybYjajt5gNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to