Fix regex of ansible completion

This commit is contained in:
kota65535 2016-12-21 18:43:23 +09:00
parent 1e1c48e37b
commit 75bbd4b155
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ __host_list ()
local -a mixed_host_list
mixed_host_list=$(command \
cat ${HOST_FILE} \
| awk 'NF && $1 !~ /^[:space:]*#|[\[:=]/ { print $1 }' \
| awk 'NF && $1 !~ /^[[:space:]]*#|[\[:=]/ { print $1 }' \
| sort | uniq)
# compute set difference h1 - h2