From 6d1197368f022cff9291ab6aa630faa6a63c3f2c Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Tue, 22 Dec 2015 14:04:43 +0300 Subject: [PATCH] [Verify] Deprecating --system-wide-install in favor of --system-wide 'system-wide-install' sounds slightly strange because when we specify this option, we don't install anything. So it was decided to deprecate this option in favor of 'system-wide' that is more suitable. If we execute `rally verify start --help`, we will see the following warning: $ rally verify start --help ... --system-wide Don't create a virtual env when installing Tempest; use the local env instead of the Tempest virtual env when running the tests. Take notice that all Tempest requirements have to be already installed in the local env! --system-wide-install DEPRECATED! Use --system-wide instead ... Change-Id: I663c18cb85715d732bb9c5012e3e23ca10751d5a --- etc/rally.bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rally.bash_completion b/etc/rally.bash_completion index 8f1675a1..f63ff9a4 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -56,7 +56,7 @@ _rally() OPTS["verify_results"]="--uuid --html --json --output-file" OPTS["verify_show"]="--uuid --sort-by --detailed" OPTS["verify_showconfig"]="--deployment" - OPTS["verify_start"]="--deployment --set --regex --tests-file --tempest-config --xfails-file --no-use --system-wide-install --concurrency" + OPTS["verify_start"]="--deployment --set --regex --tests-file --tempest-config --xfails-file --no-use --system-wide --concurrency" OPTS["verify_uninstall"]="--deployment" OPTS["verify_use"]="--verification"