From 365c6b44ac01d2d1447df0f96c65a694785e54a7 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 25 May 2021 12:43:02 -0400 Subject: [PATCH] scripts/ansible: Cleaner output --- scripts/ansible | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ansible b/scripts/ansible index a0a585faa..590d62bb4 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -157,7 +157,7 @@ $APT_PATH/apt -y --allow-downgrades install \ python3-pymysql python3-psycopg2 python3-passlib python3-pip \ python3-setuptools python3-packaging python3-venv virtualenv -echo -e "\n'pip3 install ansible-core' will now run:\n" +echo -e "\n\n'pip3 install ansible-core' will now run:\n" pip3 install ansible-core # (Re)running collection installs appears safe, with --force-with-deps to force @@ -182,5 +182,5 @@ 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-core" +echo -e " apt -a list ansible-core\n" echo -e "WARNING: You might need to start a new Linux shell, so /usr/local/bin works.\n\n"