summaryrefslogtreecommitdiff
path: root/shell-completion/bash/resolvectl
diff options
context:
space:
mode:
Diffstat (limited to 'shell-completion/bash/resolvectl')
-rw-r--r--shell-completion/bash/resolvectl12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell-completion/bash/resolvectl b/shell-completion/bash/resolvectl
index a8b24bc757..0d92acd539 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