From ebda624baf9a2e8c2858c1f70ca6fcab22b6492e Mon Sep 17 00:00:00 2001 From: Aidan Fitzgerald Date: Thu, 12 Jul 2018 22:14:39 -0400 Subject: [PATCH] Change to correct dependencies --- roles/lokole/tasks/install.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/roles/lokole/tasks/install.yml b/roles/lokole/tasks/install.yml index bcefb5b5a..c08f12416 100644 --- a/roles/lokole/tasks/install.yml +++ b/roles/lokole/tasks/install.yml @@ -1,10 +1,12 @@ - name: Install packages required by Lokole - package: + apt: name: "{{ item }}" state: present with_items: - - "php{{ php_version }}-intl" - - "php{{ php_version }}-mbstring" + - make + - python3-venv + - npm + - shellcheck tags: - download