mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 08:27:26 +00:00
improved ansible-vault completions
This commit is contained in:
parent
e44d207d64
commit
87dee7ad1c
1 changed files with 39 additions and 6 deletions
|
@ -1,7 +1,40 @@
|
|||
complete -c ansible-vault -l ask-vault-pass -f -d "Ask for vault password"
|
||||
complete -c ansible-vault -s h -l help -f -d "Show this help message and exit"
|
||||
complete -c ansible-vault -l new-vault-password-file -r -d "New vault password file for rekey"
|
||||
complete -c ansible-vault -l output -r -d "Output file name for encrypt or decrypt; use - for stdout"
|
||||
complete -c ansible-vault -l vault-password-file -r -d "Vault password file"
|
||||
complete -c ansible-vault -s v -l verbose -d "Verbose mode (-vvv for more, -vvvv to enable connection debugging)"
|
||||
|
||||
function __fish_ansible_vault_no_subcommand -d 'Test if ansible-vault has yet to be given the subcommand'
|
||||
commandline -pc | not string match --regex '[^-]\b(?:create|decrypt|edit|encrypt|encrypt_string|rekey|view)\b'
|
||||
end
|
||||
|
||||
function __fish_ansible_vault_using_command
|
||||
set -l cmd (string trim (__fish_ansible_vault_no_subcommand))
|
||||
test -z "$cmd";
|
||||
and return 1
|
||||
contains -- "$cmd" $argv
|
||||
end
|
||||
|
||||
|
||||
# generic options
|
||||
complete -c ansible-vault -l version -d "Display version and exit"
|
||||
complete -c ansible-vault -s h -l help -f -d "Show help message and exit"
|
||||
complete -c ansible-vault -s v -l verbose -d "Verbose mode (-vvv for more, -vvvv to enable connection debugging)"
|
||||
complete -c ansible-vault -l ask-vault-pass -f -d "Ask for vault password"
|
||||
complete -c ansible-vault -l new-vault-id -r -d "the new vault identity to use for rekey"
|
||||
complete -c ansible-vault -l new-vault-password-file -r -d "New vault password file for rekey"
|
||||
complete -c ansible-vault -l vault-id -r -d "the vault identity to use"
|
||||
complete -c ansible-vault -l vault-password-file -r -d "Vault password file"
|
||||
|
||||
# subcommands
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a decrypt -d 'Decrypt encrypted file or stdin'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a encrypt -d 'Encrypt a file or stdin'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra create -d 'Create encrypted file'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra edit -d 'Edit encrypted file'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra rekey -d 'Rekey encrypted file'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra view -d 'View contents of something encrypted'
|
||||
complete -f -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a encrypt_string -d 'Encrypt string'
|
||||
|
||||
# encrypt_string options
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -r -l stdin-name -f -d 'Specify the variable name for stdin'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -r -s n -l name -f -d 'Specify the variable name'
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -s p -l prompt -d 'Prompt for the string to encrypt'
|
||||
|
||||
# shared options
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string rekey edit create' -l encrypt-vault-id -r -d "the vault id used to encrypt (required if more than vault-id is provided)"
|
||||
complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string decrypt' -l output -r -d "Output file name for encrypt or decrypt; use - for stdout"
|
||||
|
|
Loading…
Reference in a new issue