summaryrefslogtreecommitdiff
path: root/bash_completion
diff options
context:
space:
mode:
authorBrett Holman <bholman.devel@gmail.com>2022-04-27 10:05:55 -0500
committerGitHub <noreply@github.com>2022-04-27 09:05:55 -0600
commit3bcffacb216d683241cf955e4f7f3e89431c1491 (patch)
tree4a0ada8fb7146e79d6c0b4aa70e4fa882bad559c /bash_completion
parent2f496d60d16ebf7c85ef6afab2b73d449280932d (diff)
downloadcloud-init-git-3bcffacb216d683241cf955e4f7f3e89431c1491.tar.gz
Promote cloud-init schema from devel to top level subcommand (#1402)
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion/cloud-init6
1 files changed, 3 insertions, 3 deletions
diff --git a/bash_completion/cloud-init b/bash_completion/cloud-init
index b9f137b1..1eceb472 100644
--- a/bash_completion/cloud-init
+++ b/bash_completion/cloud-init
@@ -45,6 +45,9 @@ _cloudinit_complete()
query)
COMPREPLY=($(compgen -W "--all --help --instance-data --list-keys --user-data --vendor-data --debug" -- $cur_word));;
+ schema)
+ COMPREPLY=($(compgen -W "--help --config-file --docs --annotate --system" -- $cur_word))
+ ;;
single)
COMPREPLY=($(compgen -W "--help --name --frequency --report" -- $cur_word))
;;
@@ -72,9 +75,6 @@ _cloudinit_complete()
;;
render)
COMPREPLY=($(compgen -W "--help --instance-data --debug" -- $cur_word));;
- schema)
- COMPREPLY=($(compgen -W "--help --config-file --doc --annotate" -- $cur_word))
- ;;
show)
COMPREPLY=($(compgen -W "--help --format --infile --outfile" -- $cur_word))
;;