Hi Michael,

One way you can get around this is to use the inventory_hostname variable
in the dest= along with flat=yes, as follows:

- hosts: all
  gather_facts: no
  tasks:
  - fetch: src=/etc/hosts dest="/tmp/{{inventory_hostname}}/" flat=yes

As long as the inventory_hostname is actually a hostname and not an IP,
this should do what you need. Beyond that, you can open a feature request
PR on ansible-modules-core to allow using the inventory hostname instead of
the connection address, when available.

Hope that helps!

On Tue, Oct 21, 2014 at 1:27 PM, Michael Warkentin <[email protected]>
wrote:

> Hello, I was wondering if there's any way to use the hostname of a server
> rather than it's IP to generate the file system tree when using the fetch
> module?
>
> Our ansible inventories are set up like so:
>
> aqua-notif-wrkr-01 ansible_ssh_host=12.34.56.789
>
> This ends up generating a tree like this:
> https://s3.amazonaws.com/snaps.michaelwarkentin.com/generate_server_list.py__waveapps_2014-10-21_16-17-17.png
>
> Would setting up /etc/hosts to map hostnames to IPs work, or are we stuck
> with this?
>
> --
> 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/ee6477b0-7b5d-4ae7-aa5b-33145f0e8e56%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/ee6477b0-7b5d-4ae7-aa5b-33145f0e8e56%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAMFyvFh%3D3bQ1H%2BCyZX%2B9ftbGpAk3gNrmSp6zrE%3DhOgxcMN618w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to