Merge "Exclude hosts header line in expand-groups"

This commit is contained in:
Jenkins 2016-01-18 23:24:14 +00:00 committed by Gerrit Code Review
commit cefe20389c

View File

@ -25,7 +25,7 @@ for line in $(</etc/ansible/groups.txt); do
name=$(echo $line | cut -f1 -d' ')
pattern=$(echo $line | cut -f2 -d' ')
echo "[${name}]" >> $outfile
ansible "~${pattern}" --list-hosts >> $outfile
ansible "~${pattern}" --list-hosts | grep -v '^ +hosts \([0-9]+\):' >> $outfile
done
cp $outfile /etc/ansible/hosts/generated-groups