From 7ca0db0c10466cc64ef66d530467e2379dbf5bfe Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Wed, 12 Jun 2019 09:06:19 +0200 Subject: [PATCH] ansible-playbooks/general#85 Quoting some strings --- tasks/install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 2972bf3..2ae503c 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -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 -- GitLab