From 6c4c24044b6d5ea7f59904bc218f2f21ee3fbdec Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 24 May 2016 10:29:33 -0700 Subject: [PATCH] change keyfile to key All files used by kolla-ansible do not have a file ending. keyfile was added as an anomoly. I noticed this during a review that coolsvap had underway where he did a similar thing. I think --key is fine. TrivialFix Change-Id: I99867a1a04a4dd881dcb2af39946122ea6b7d8a3 --- tools/kolla-ansible | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/kolla-ansible b/tools/kolla-ansible index 3a8ffd2ab1..f6bce81ba4 100755 --- a/tools/kolla-ansible +++ b/tools/kolla-ansible @@ -31,7 +31,7 @@ Options: --inventory, -i Specify path to ansible inventory file --playbook, -p Specify path to ansible playbook file --configdir Specify path to directory with globals.yml - --keyfile, -k Specify path to ansible vault keyfile + --key -k Specify path to ansible vault keyfile --help, -h Show this usage information --tags, -t Only run plays and tasks tagged with these values --extra, -e Set additional variables as key=value or YAML/JSON passed to ansible-playbook @@ -54,7 +54,7 @@ EOF SHORT_OPTS="hi:p:t:k:e:v" -LONG_OPTS="help,inventory:,playbook:,tags:,keyfile:,extra:,verbose,configdir:,passwords:," +LONG_OPTS="help,inventory:,playbook:,tags:,key:,extra:,verbose,configdir:" ARGS=$(getopt -o "${SHORT_OPTS}" -l "${LONG_OPTS}" --name "$0" -- "$@") || { usage >&2; exit 2; } eval set -- "$ARGS" @@ -96,7 +96,7 @@ while [ "$#" -gt 0 ]; do shift 2 ;; - (--keyfile|-k) + (--key|-k) VAULT_PASS_FILE="$2" EXTRA_OPTS="$EXTRA_OPTS --vault-password-file=$VAULT_PASS_FILE" shift 2