mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
4d2e3ed3f8
scripts/openvpn/bash-completion * fix SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting). * Added double quotes
23 lines
691 B
Bash
23 lines
691 B
Bash
#!/bin/bash
|
|
_pivpn()
|
|
{
|
|
local cur prev opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
dashopts="-a -c -d -l -r -h -u -up -bk"
|
|
opts="debug add clients list revoke uninstall help update backup"
|
|
if [ "${#COMP_WORDS[@]}" -eq 2 ]
|
|
then
|
|
if [[ ${cur} == -* ]] ; then
|
|
COMPREPLY=( "$(compgen -W "${dashopts}" -- "${cur}")" )
|
|
else
|
|
COMPREPLY=( "$(compgen -W "${opts}" -- "${cur}")" )
|
|
fi
|
|
elif [[ ( "$prev" == "add" || "$prev" == "-a" ) && "${#COMP_WORDS[@]}" -eq 3 ]]
|
|
then
|
|
COMPREPLY=( "$(compgen -W "nopass" -- "${cur}")" )
|
|
fi
|
|
return 0
|
|
}
|
|
complete -F _pivpn pivpn
|