1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #344 from holta/master

clarify ./runtags list syntax doesn't allow spaces
This commit is contained in:
A Holt 2017-09-29 18:05:08 -04:00 committed by GitHub
commit bee031b298

View file

@ -25,8 +25,9 @@ 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 <tagname1>,<tagname2>,<tagname3>"
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 and tagname values..."
ansible-playbook -i ansible_hosts iiab.yml --connection=local --list-tag
exit 0
fi