diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py
index 8fd63beeded4b18f836bdc599a3b45e218fb46a3..8c16158b399eb134a720a63e985b3c73182c7817 100644
--- a/lib/spack/spack/cmd/install.py
+++ b/lib/spack/spack/cmd/install.py
@@ -72,7 +72,7 @@ def setup_parser(subparser):
     subparser.add_argument(
         '-u', '--until', type=str, dest='until', default=None,
         help="phase to stop after when installing (default None)")
-    arguments.add_common_arguments(subparser, ['jobs', 'install_status'])
+    arguments.add_common_arguments(subparser, ['jobs'])
     subparser.add_argument(
         '--overwrite', action='store_true',
         help="reinstall an existing spec, even if it has dependents")
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash
index 5e8936125f8a7bcd9512b903e7374a67700e3d84..3cda07ec482aab3f33465d2c74159cd450c5fedc 100755
--- a/share/spack/spack-completion.bash
+++ b/share/spack/spack-completion.bash
@@ -635,12 +635,13 @@ function _spack_info {
 function _spack_install {
     if $list_options
     then
-        compgen -W "-h --help --only -j --jobs -I --install-status
-                    --overwrite --keep-prefix --keep-stage --dont-restage
-                    --use-cache --no-cache --show-log-on-error --source
-                    -n --no-checksum -v --verbose --fake --only-concrete
-                    -f --file --clean --dirty --test --log-format --log-file
-                    --cdash-upload-url -y --yes-to-all" -- "$cur"
+        compgen -W "-h --help --only -j --jobs --overwrite --keep-prefix
+                    --keep-stage --dont-restage --use-cache --no-cache
+                    --cache-only --show-log-on-error --source -n --no-checksum
+                    -v --verbose --fake --only-concrete -f --file --clean
+                    --dirty --test --run-tests --log-format --log-file
+                    --cdash-upload-url --cdash-build --cdash-site --cdash-track
+                    --cdash-buildstamp -y --yes-to-all" -- "$cur"
     else
         compgen -W "$(_all_packages)" -- "$cur"
     fi