From 18bc106d41f41ecff00bba8d8ccb141d0ed9df6e Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 12 Jun 2019 09:45:25 +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 fcd8655..12d20b3 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -3,12 +3,12 @@
 
 - name: Apt Key
   apt_key:
-    url: http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x8C47BE8E75BCA694
+    url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x8C47BE8E75BCA694'
     state: present
 
 - name: Apt Repository
   apt_repository:
-    repo: ppa:certbot/certbot
+    repo: 'ppa:certbot/certbot'
     state: present
     mode: 0644
 
-- 
GitLab