From 28da43444ab87498ce5aa9ab2fd2a5e71725de54 Mon Sep 17 00:00:00 2001 From: A Holt Date: Thu, 27 May 2021 13:34:51 -0400 Subject: [PATCH] scripts/ansible: Mention 'ansible-galaxy collection list' --- scripts/ansible | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ansible b/scripts/ansible index d5b594e54..1c1f48675 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -181,5 +181,6 @@ ansible-galaxy collection install --force-with-deps \ echo -e "\n\nSUCCESS! PLEASE VERIFY ANSIBLE WITH COMMANDS LIKE:\n" echo -e " ansible --version" echo -e " pip show ansible-core" -echo -e ' apt -a list "ansible*"\n' +echo -e ' apt -a list "ansible*"' +echo -e " ansible-galaxy collection list\n" echo -e "WARNING: Start a new Linux shell, if it changed from /usr/bin to /usr/local/bin\n\n"