summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_dhclient
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
committerAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
commit6e1ab9aa550695ee7e3d467b4173c0b83ba7f759 (patch)
tree8fb7faa4364a7cbf1cba48296a5f537e13f2a8d9 /Completion/Unix/Command/_dhclient
parent5ad56a41f1ee2e61abca079f5ea8909f895ac2dd (diff)
parentf027f1d6e876708bc75d4217e1ca26898658d8d3 (diff)
downloadzsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.tar.gz
zsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.zip
Merge tag 'zsh-5.4.2-test-2' / 'upstream' branch into 'debian' branch
Test version 2 prior to zsh 5.5.
Diffstat (limited to 'Completion/Unix/Command/_dhclient')
-rw-r--r--Completion/Unix/Command/_dhclient4
1 files changed, 3 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_dhclient b/Completion/Unix/Command/_dhclient
index 10cb551e0..b5889df21 100644
--- a/Completion/Unix/Command/_dhclient
+++ b/Completion/Unix/Command/_dhclient
@@ -7,19 +7,20 @@ case $OSTYPE in
args+=(
'-c+[specify configuration file]:file:_files'
'-l+[specify leases file]:file:_files'
- '-u[reject leases with unknown options]'
)
;|
freebsd*)
args+=(
'(-d)-b[immediately move to the background]'
'-p+[specify PID file]:file:_files'
+ '-u[reject leases with unknown options]'
)
;;
openbsd*)
args+=(
'-i+[ignore values provided by leases for specified options]:options'
'-L+[specify file to write option data too]:file:_files'
+ "-n[don't configure any interfaces]"
)
;;
*) # ISC implementation, used on Linux and NetBSD
@@ -60,6 +61,7 @@ case $OSTYPE in
'-V[specify vendor-class-identifier option]:option'
'--request-options[specify list of options the client is to request from the server]:options'
'--timeout[specify time after which dhclient will decide that no DHCP servers can be contacted]:timeout'
+ '--dad-wait-time[specify maximum time to wait for duplicate address detection]:time (seconds)'
)
;;
esac