From 92edadadde3dcca66d067288524f9f1f6eb47e7f Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 8 Jan 2019 22:03:09 +0100 Subject: [PATCH] add sshpass --- tasks/main.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index a7540df..2285d5b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,14 +1,11 @@ --- # tasks file for ansible-manager -- name: update cache - pacman: - update_cache: true # not required. Whether or not to refresh the master package lists. This can be run as part of a package installation or as a separate step. - become: yes - name: install ansible program pacman: state: present # not required. choices: absent;latest;present. Desired state of the package. upgrade: false # not required. Whether or not to upgrade whole system. - name: ['ansible', 'ansible-lint'] # not required. Name or list of names of the packages to install, upgrade, or remove. + name: ['ansible', 'ansible-lint' , 'sshpass'] # not required. Name or list of names of the packages to install, upgrade, or remove. + update_cache: true become: yes - name: install ansible-aur-git