From de855fe18ab7f14308e475458348562cba1c59c2 Mon Sep 17 00:00:00 2001 From: Matthew Rees Date: Mon, 6 Jun 2016 11:48:31 +0200 Subject: [PATCH] Use the command module in place of the shell module --- roles/ceph-common/tasks/checks/check_firewall.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-common/tasks/checks/check_firewall.yml b/roles/ceph-common/tasks/checks/check_firewall.yml index c5742cc17..e945ccd81 100644 --- a/roles/ceph-common/tasks/checks/check_firewall.yml +++ b/roles/ceph-common/tasks/checks/check_firewall.yml @@ -1,6 +1,6 @@ --- - name: check if nmap is installed - local_action: shell command -v nmap + local_action: command command -v nmap changed_when: false failed_when: false register: nmapexist