From af04c0d333b8d0868a0afbd12c9135953f5cb5e0 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 24 Nov 2017 12:54:17 -0500 Subject: [PATCH] Remove an extraneous quote it's all about the quotes today --- roles/common/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index c04caad..0ef8659 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -25,7 +25,7 @@ - name: Add Yarnpkg apt key apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg state=present - name: Add Yarnpkg apt repository - apt_repository: repo="deb https://dl.yarnpkg.com/debian/"" stable main state=present + apt_repository: repo="deb https://dl.yarnpkg.com/debian/" stable main state=present # Note that we don't install nginx, letsencrypt, postgresql and redis here, that will be in different roles - name: Update apt cache and install various dependencies apt: name={{ item }} state=latest update_cache=yes