Re: [ansible-project] Copying files on the remote host

2015-10-20 Thread Brian Coca
in 2.0 the copy module supports remote_src=true to copy files to/from the remote target in 1.x what you've got or the synchronize module. -- Brian Coca -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop

[ansible-project] Copying files on the remote host

2015-10-20 Thread brentgclarklist
Good day Guys How do I got about copying files on the remote host? My client up loads the cert in /srv, and I need ansible to copy it. This is what I got: - name: copy SSL key domain.key command: creates="{{ ssl_cert_dir }}/domain.key" cp "{{ ssl_cert_dir }}/domain.key" /etc/apache2/ssl/k