Hi,

I have a project where I wanted to use templates but instead of having them 
on ansible server, I wanted to use a remote file and deploy it.

Why? As I'm cloning site project on remote front servers, and the template 
is in the project so dev's could update it. 

So I have server 1 ( ansible controller )

Server 2 ( target ) with template.php.dist file on /home

I created a role with main task:


  - name: Create conf config/template.php
    template: >
         src="/home/template.php.dist"
         dest="/home/licom.php"
    delegate_to: "{{ item }}"
    with_items:
         - "{{ inventory_hostname }}"

So I delegate the task to execute on server 2 here but seem that the 
template will always check for server 1 as source. Is there a way to 
changer the source server? So I won't need to clone the entire project on 
server 1?

Thanks
Mehdi B

-- 
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/f5b1e13c-657a-4cd3-9c17-0bde74609188%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to