From b37603c18e209afd488ec3985a74e7033760bad6 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 24 Nov 2017 12:51:39 -0500 Subject: [PATCH] Should be apt_repository instead of apt-repository --- 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 e994a34..1d4ffc9 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