Re: [ansible-project] Subversion only on server

2014-07-25 Thread Mauricio Tavares
On Thu, Jul 24, 2014 at 6:48 PM, Michael DeHaan mich...@ansible.com wrote: Could go either way. If you had a pattern like so: - hosts: localhost tasks: - svn: ... - hosts: webservers tasks: - synchronize: ... You could do a local checkout to the server once and then

[ansible-project] Subversion only on server

2014-07-24 Thread Mauricio Tavares
If I am storing templates and other files in subversion, does the client need to be able to reach the svn server or can I just have the ansible server grab files from svn server and feed them to client? -- You received this message because you are subscribed to the Google Groups Ansible

Re: [ansible-project] Subversion only on server

2014-07-24 Thread Michael DeHaan
Could go either way. If you had a pattern like so: - hosts: localhost tasks: - svn: ... - hosts: webservers tasks: - synchronize: ... You could do a local checkout to the server once and then blast it out, rather than have every server connect to SVN directly. unarchive would be