pivpn/scripts/openvpn/bash-completion

26 lines
654 B
Text
Raw Permalink Normal View History

#!/bin/bash
2022-07-27 12:53:36 +00:00
_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}")")
2019-10-14 10:27:28 +00:00
fi
elif [[ ("${prev}" == "add" || "${prev}" == "-a") ]] \
&& [[ "${#COMP_WORDS[@]}" -eq 3 ]]; then
2022-07-27 12:53:36 +00:00
COMPREPLY=("$(compgen -W "nopass" -- "${cur}")")
fi
return 0
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
2019-10-14 10:27:28 +00:00
complete -F _pivpn pivpn