delegate_to with target server's context?

63 views
Skip to first unread message

Hagai Kariti

unread,
Jul 30, 2014, 5:22:09 AM7/30/14
to ansible...@googlegroups.com
Hi all
I need to trigger an action (generating a file using template) on another server during a play run. Naturally I used delegation. However, if I use variables like ansible_hostname I get the values from the *original* host. That's indeed what I would expect on most cases, but is there a way to use the "context" of the target server?

Example playbook:

- hosts: source
  tasks:
    - debug: var=ansible_hostname
      delegate_to: target

What I get:
TASK: [debug var=ansible_hostname] ******************************************** 
ok: [localhost] => {
    "ansible_hostname": "source"
}

What I want to get:
TASK: [debug var=ansible_hostname] ******************************************** 
ok: [localhost] => {
    "ansible_hostname": "target"
}


Thanks!

Michael DeHaan

unread,
Jul 30, 2014, 8:07:40 AM7/30/14
to ansible...@googlegroups.com
There's no magic variable for this presently.

If you'd like to work on it, or submit a feature idea ticket, a variable like "delegated_host" could be added.





--
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 ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/8d6e27b7-2b3f-40f4-b4a3-8642465afc97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply all
Reply to author
Forward
0 new messages