From 19d3fe825b2a94a4e88038a739af9425581952a3 Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Wed, 13 Jun 2018 20:26:24 +0200 Subject: resolve: rename PrivateDNS to DNSOverTLS PrivateDNS is not considered a good name for this option, so rename it to DNSOverTLS --- shell-completion/bash/resolvectl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'shell-completion/bash/resolvectl') diff --git a/shell-completion/bash/resolvectl b/shell-completion/bash/resolvectl index dcacb1269..97e83d2bd 100644 --- a/shell-completion/bash/resolvectl +++ b/shell-completion/bash/resolvectl @@ -48,14 +48,14 @@ _resolvectl() { [LINK]='revert dns domain nta' [RESOLVE]='llmnr mdns' [DNSSEC]='dnssec' - [PRIVATEDNS]='privatedns' + [DNSOVERTLS]='dnsovertls' [STANDALONE]='statistics reset-statistics flush-caches reset-server-features' ) local -A ARGS=( [FAMILY]='tcp udp sctp' [RESOLVE]='yes no resolve' [DNSSEC]='yes no allow-downgrade' - [PRIVATEDNS]='no opportunistic' + [DNSOVERTLS]='no opportunistic' ) local interfaces=$( __get_interfaces ) @@ -111,7 +111,7 @@ _resolvectl() { comps="" fi - elif __contains_word "$verb" ${VERBS[LINK]} ${VERBS[RESOLVE]} ${VERBS[DNSSEC]} ${VERBS[PRIVATEDNS]}; then + elif __contains_word "$verb" ${VERBS[LINK]} ${VERBS[RESOLVE]} ${VERBS[DNSSEC]} ${VERBS[DNSOVERTLS]}; then for ((i++; i < COMP_CWORD; i++)); do if __contains_word "${COMP_WORDS[i]}" $interfaces && ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then @@ -155,10 +155,10 @@ _resolvectl() { comps='' fi - elif __contains_word "$verb" ${VERBS[PRIVATEDNS]}; then + elif __contains_word "$verb" ${VERBS[DNSOVERTLS]}; then name= for ((i++; i < COMP_CWORD; i++)); do - if __contains_word "${COMP_WORDS[i]}" ${ARGS[PRIVATEDNS]} && + if __contains_word "${COMP_WORDS[i]}" ${ARGS[DNSOVERTLS]} && ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then name=${COMP_WORDS[i]} break; @@ -166,7 +166,7 @@ _resolvectl() { done if [[ -z $name ]]; then - comps=${ARGS[PRIVATEDNS]} + comps=${ARGS[DNSOVERTLS]} else comps='' fi -- cgit v1.2.3