X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=bash_completion.d%2Ftinc;fp=bash_completion.d%2Ftinc;h=8145d43f8e4741396e283fc38e094c10f0a3eadd;hp=536503bb76bfeb66bb86c996d7adc53ceb9a0047;hb=44c7f554c7a6eb411428cfd30ca2cb21a613830e;hpb=48ecff6ddb7e6f9d6b6df7f8952c4cfb318572fa diff --git a/bash_completion.d/tinc b/bash_completion.d/tinc index 536503bb..8145d43f 100644 --- a/bash_completion.d/tinc +++ b/bash_completion.d/tinc @@ -5,7 +5,7 @@ _tinc() { prev="${COMP_WORDS[COMP_CWORD-1]}" opts="-c -d -D -K -n -o -L -R -U --config --no-detach --debug --net --option --mlock --logfile --pidfile --chroot --user --help --version" confvars="Address AddressFamily BindToAddress BindToInterface Broadcast Cipher ClampMSS Compression ConnectTo DecrementTTL Device DeviceType Digest DirectOnly ECDSAPrivateKeyFile ECDSAPublicKey ECDSAPublicKeyFile ExperimentalProtocol Forwarding GraphDumpFile Hostnames IffOneQueue IndirectData Interface KeyExpire ListenAddress LocalDiscovery MACExpire MACLength MaxOutputBufferSize MaxTimeout Mode Name PMTU PMTUDiscovery PingInterval PingTimeout Port PriorityInheritance PrivateKeyFile ProcessPriority Proxy PublicKeyFile ReplayWindow StrictSubnets Subnet TCPOnly TunnelServer UDPRcvBuf UDPSndBuf VDEGroup VDEPort Weight" - commands="add connect debug del disconnect dump edit export export-all generate-ecdsa-keys generate-keys generate-rsa-keys get help import info init invite join log pcap pid purge reload restart retry set start stop top version" + commands="add connect debug del disconnect dump edit export export-all generate-ecdsa-keys generate-keys generate-rsa-keys get help import info init invite join log network pcap pid purge reload restart retry set start stop top version" case ${prev} in -c|--config) @@ -61,6 +61,18 @@ _tinc() { COMPREPLY=( $(compgen -W "reachable nodes edges subnets connections graph" -- ${cur}) ) return 0 ;; + network) + nets="" + pushd /etc/tinc >/dev/null 2>/dev/null + for dir in *; do + if [[ -f "$dir/tinc.conf" ]]; then + nets="$nets $dir" + fi + done + popd >/dev/null 2>/dev/null + COMPREPLY=( $(compgen -W "${nets}" -- ${cur}) ) + return 0 + ;; esac if [[ -z ${cur} ]] ; then COMPREPLY=( $(compgen -W "${opts} ${commands}" -- ${cur}) )