mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
e2941f8fae
Currently apt pulls all packages from the unstable repo because the script intendation created the file 'limit-unstable' with tabs in it. Fixed using printf to create a multiline file (which is the way wireguard.com/install suggests).
19 lines
512 B
Text
19 lines
512 B
Text
_pivpn()
|
|
{
|
|
local cur prev opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
dashopts="-a -c -d -l -qr -r -h -u"
|
|
opts="add clients debug list qrcode remove help uninstall"
|
|
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
|