Add passwords parameter to LONG_OPTS in kolla-ansible script

Change-Id: I8b139d716deeb7eee8eb22beda8ac6d3b82e66ee
Closes-bug: #1587648
This commit is contained in:
Christian Berendt 2016-05-31 23:04:38 +02:00
parent 430e79b35b
commit d1ec04809d
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ EOF
SHORT_OPTS="hi:p:t:k:e:v"
LONG_OPTS="help,inventory:,playbook:,tags:,key:,extra:,verbose,configdir:"
LONG_OPTS="help,inventory:,playbook:,tags:,key:,extra:,verbose,configdir:,passwords:"
ARGS=$(getopt -o "${SHORT_OPTS}" -l "${LONG_OPTS}" --name "$0" -- "$@") || { usage >&2; exit 2; }
eval set -- "$ARGS"