From a9e05e110c5379b53aef7fa3e8aaec5ef1acf6cc Mon Sep 17 00:00:00 2001 From: pkomarov Date: Tue, 4 Jun 2019 13:53:46 +0300 Subject: [PATCH] Fix : /bin/sh: line 1: wget: command not found Change-Id: I131763037b94e404839eccd4420fc7bdd092ce0b --- infrared/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrared/tasks/install.yml b/infrared/tasks/install.yml index 17168cbde..79fa33537 100644 --- a/infrared/tasks/install.yml +++ b/infrared/tasks/install.yml @@ -6,7 +6,7 @@ - name: Install required packages become: yes vars: - required_packages: ['python-virtualenv', 'git', 'gcc', 'python-devel'] + required_packages: ['python-virtualenv', 'git', 'gcc', 'python-devel', 'wget'] yum: name: "{{ required_packages }}" state: present