More quotes needed in roles/common/tasks/main.yml

This commit is contained in:
staticsafe 2017-11-24 12:53:01 -05:00
parent b37603c18e
commit 03420f6182
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@
- "deb https://deb.nodesource.com/node_6.x xenial main"
- "deb-src https://deb.nodesource.com/node_6.x xenial main"
- name: Add Yarnpkg apt key
apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg state=present
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