2021-02-14 12:42:34 +00:00
|
|
|
#!/bin/bash
|
2019-12-02 16:00:39 +00:00
|
|
|
_pivpn()
|
|
|
|
{
|
2021-02-14 13:05:30 +00:00
|
|
|
local cur opts
|
2019-12-02 16:00:39 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2020-12-08 23:44:51 +00:00
|
|
|
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"
|
2019-12-02 16:00:39 +00:00
|
|
|
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
|