turns out apt_repository needs quotes

This commit is contained in:
staticsafe 2017-11-24 12:50:45 -05:00
parent 793b3e72e0
commit aaafece287
1 changed files with 6 additions and 3 deletions

View File

@ -16,9 +16,12 @@
notify:
- restart rsyslog
- name: Add Nodesource apt key
apt_key: url=https://deb.nodesource.com/gpgkey/nodesource.gpg.key state=present
- name: Add Nodesource apt repository
apt_repository: repo=deb https://deb.nodesource.com/node_6.x xenial main state=present
apt_key: url="https://deb.nodesource.com/gpgkey/nodesource.gpg.key" state=present
- name: Add Nodesource apt repositories
apt_repository: repo={{ item }} state=present
with_items:
- "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
- name: Add Yarnpkg apt repository