1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

clarify ./runtags syntax doesn't allow spaces

This commit is contained in:
A Holt 2017-09-29 17:24:35 -04:00 committed by GitHub
parent 4c33c549c8
commit 7113ae05da

View file

@ -24,9 +24,10 @@ tags=$(echo $1 | tr "," "\n")
if [ "$tags" == "" ]
then
echo " usage: ./runtags <tagname>"
echo " Can take a single value or a comma separated list."
echo " Now retrieving a list of possible values..."
echo " usage: ./runtags <playbook>"
echo " usage: ./runtags <playbook1>,<playbook2>,<playbook3>"
echo " Can take a single value or a comma-separated list (no spaces within the list!)"
echo " Now retrieving a list of possible Ansible playbook values..."
ansible-playbook -i ansible_hosts iiab.yml --connection=local --list-tag
exit 0
fi