From c26261752f2ff91b923e536b57f8bd629aaddd23 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 19 May 2021 12:28:14 -0400 Subject: [PATCH] Better explain how to verify your Ansible version/installation --- scripts/ansible | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/ansible b/scripts/ansible index eacd3e156..3bdf09f8c 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -178,4 +178,7 @@ ansible-galaxy collection install --force-with-deps \ #mkdir -p /etc/ansible # LIKELY REDUNDANT, due to above installation of Ansible #echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts # LIKELY REDUNDANT, due to https://github.com/iiab/iiab/blob/master/ansible_hosts -echo -e "SUCCESS: VERIFY WITH 'ansible --version' (and 'apt -a list ansible-core' ?)\n\n" +echo -e "SUCCESS INSTALLING ANSIBLE! PLEASE VERIFY WITH COMMANDS LIKE:" +echo -e " ansible --version" +echo -e " pip show ansible-core" +echo -e " apt -a list ansible-core\n\n"