diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-27 21:26:12 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-05-01 18:17:59 +0200 |
commit | 5db2bf1b30c4fb444f6996d0acfd619325a78a60 (patch) | |
tree | 5c4616d4beff2b1a7346a4c64235ca4b51b0e941 /shell-completion/zsh | |
parent | shell-completion: add missing args to bash resolvectl (diff) | |
download | systemd-5db2bf1b30c4fb444f6996d0acfd619325a78a60.tar.xz systemd-5db2bf1b30c4fb444f6996d0acfd619325a78a60.zip |
shell-completion: add missing args to zsh resolvectl
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'shell-completion/zsh')
-rw-r--r-- | shell-completion/zsh/_resolvectl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shell-completion/zsh/_resolvectl b/shell-completion/zsh/_resolvectl index 94ff3950af..4ca469adcf 100644 --- a/shell-completion/zsh/_resolvectl +++ b/shell-completion/zsh/_resolvectl @@ -48,7 +48,9 @@ domain:"Configure per-interface search and route-only domains" flush-caches:"Flushes all DNS resource record caches the service maintains locally" llmnr:"Configure per-interface llmnr enabled status" + log-level:"Get/set logging threshold for systemd-resolved" mdns:"Configure per-interface mdns enabled status" + monitor:"Monitor DNS queries" nta:"Configure per-interface nta domains" openpgp:"Retrieve openpgp keys for an email" query:"Resolve domain names, IPv4 and IPv6 addresses" @@ -57,6 +59,7 @@ revert:"Revert the per-interfce DNS configuration" service:"Resolve DNS-SD and SRV services" show-cache:"Show the current cache contents" + show-server-state:"Show servers state" statistics:"Show resolver statistics" status:"Show the global and per-link DNS settings currently in effect" tlsa:"Query tlsa public keys stored as TLSA resource records" @@ -81,5 +84,14 @@ _arguments \ '--service-address=[Do not resolve address for services]:BOOL:(yes no)' \ '--service-txt=[Do not resolve TXT records for services]:BOOL:(yes no)' \ '--cname=[Do not follow CNAME redirects]:BOOL:(yes no)' \ + '--validate=[Do not allow DNSSEC validation]:BOOL:(yes no)' \ + '--synthesize=[Do not allow synthetic response]:BOOL:(yes no)' \ + '--cache=[Do not allow response from cache]:BOOL:(yes no)' \ + '--stale-data=[Do not allow response from cache with stale data]:BOOL:(yes no)' \ + '--zone=[Do not allow response from locally registered mDNS/LLMNR records]:BOOL:(yes no)' \ + '--trust-anchor=[Do not allow response from local trust anchor]:BOOL:(yes no)' \ + '--network=[Do not allow response from network]:BOOL:(yes no)' \ '--search=[Do not use search domains]:BOOL:(yes no)' \ + '--raw=[Dump the answer as binary data]:RAW:(payload packet)' \ + '--json=[Output as JSON]:JSON:(pretty short off)' \ '*::default: _resolvectl_commands' |