mirror of
https://github.com/pivpn/pivpn.git
synced 2025-04-22 15:20:11 +00:00
Properly avoid pulling unwanted packages from unstable repo
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).
This commit is contained in:
parent
d34577329e
commit
e2941f8fae
2 changed files with 21 additions and 10 deletions
19
scripts/wireguard/bash-completion
Normal file
19
scripts/wireguard/bash-completion
Normal file
|
@ -0,0 +1,19 @@
|
|||
_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
|
Loading…
Add table
Add a link
Reference in a new issue