Skip to content
Snippets Groups Projects
Commit 7ca0db0c authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Quoting some strings

parent 9e4ca603
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
- name: Apt Key
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
url: 'https://download.docker.com/linux/ubuntu/gpg'
state: present
- name: Apt Repository
......@@ -23,7 +23,7 @@
- name: Download Docker Compose
get_url:
url: https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-{{ ansible_system }}-{{ ansible_architecture }}
url: 'https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-{{ ansible_system }}-{{ ansible_architecture }}'
dest: /usr/local/bin/docker-compose
mode: 0755
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment