mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-19 03:10:16 +00:00
c0131f2a17
SC2034: ___ appears unused. Verify use (or export if used externally). I opted to remove the variables since they didn't seem to be used anywhere.
18 lines
520 B
Text
18 lines
520 B
Text
_pivpn()
|
|
{
|
|
local cur opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
dashopts="-a -c -d -l -qr -r -h -u -up -bk -off -on"
|
|
opts="add clients debug list qrcode remove help uninstall update backup (temp) off (temp) on"
|
|
if [ "${#COMP_WORDS[@]}" -eq 2 ]
|
|
then
|
|
if [[ ${cur} == -* ]] ; then
|
|
COMPREPLY=( $(compgen -W "${dashopts}" -- "${cur}") )
|
|
else
|
|
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
|
|
fi
|
|
fi
|
|
return 0
|
|
}
|
|
complete -F _pivpn pivpn
|