diff options
author | Dan Radez <dradez@redhat.com> | 2016-09-16 14:26:59 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-09-19 07:54:54 -0400 |
commit | 40591ae2096020c0eba2af039c88715d8fdcf88a (patch) | |
tree | d5ad1661da0ce2bdd060f379b7f9bad00a720b62 /ci/deploy.sh | |
parent | 1be5540878ac141d77fb570a63847578cdcf09d9 (diff) |
Adding a bash completion script
- allows tab completion for deploy and clean script's subcommands
Change-Id: If5f5718a3695993767671ab823f434f463c593f2
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 0a2eec2e..7f92702c 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -77,11 +77,11 @@ done display_usage() { echo -e "Usage:\n$0 [arguments] \n" - echo -e " -d|--deploy-settings : Full path to deploy settings yaml file. Optional. Defaults to null" - echo -e " -i|--inventory : Full path to inventory yaml file. Required only for baremetal" - echo -e " -n|--net-settings : Full path to network settings file. Optional." - echo -e " -p|--ping-site : site to use to verify IP connectivity. Optional. Defaults to 8.8.8.8" - echo -e " -v|--virtual : Virtualize overcloud nodes instead of using baremetal." + echo -e " --deploy-settings | -d : Full path to deploy settings yaml file. Optional. Defaults to null" + echo -e " --inventory | -i : Full path to inventory yaml file. Required only for baremetal" + echo -e " --net-settings | -n : Full path to network settings file. Optional." + echo -e " --ping-site | -p : site to use to verify IP connectivity. Optional. Defaults to 8.8.8.8" + echo -e " --virtual | -v : Virtualize overcloud nodes instead of using baremetal." echo -e " --flat : disable Network Isolation and use a single flat network for the underlay network." echo -e " --no-post-config : disable Post Install configuration." echo -e " --debug : enable debug output." @@ -96,7 +96,6 @@ display_usage() { parse_cmdline() { echo -e "\n\n${blue}This script is used to deploy the Apex Installer and Provision OPNFV Target System${reset}\n\n" echo "Use -h to display help" - sleep 2 while [ "${1:0:1}" = "-" ] do @@ -171,6 +170,7 @@ parse_cmdline() { ;; esac done + sleep 2 if [[ ! -z "$NETSETS" && "$net_isolation_enabled" == "FALSE" ]]; then echo -e "${red}INFO: Single flat network requested. Only admin_network settings will be used!${reset}" |