Search
j0ke.net Open Build Service
>
Projects
>
GFS
>
sysconfig
> sysconfig-ifup-dhcp-dhcpcd-lastlease.bnc447237.diff
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File sysconfig-ifup-dhcp-dhcpcd-lastlease.bnc447237.diff of Package sysconfig (Revision 2)
Currently displaying revision
2
,
show latest
--- config/sysconfig.config-network +++ config/sysconfig.config-network 2008/12/02 17:00:10 @@ -127,13 +127,13 @@ MANDATORY_DEVICES="" ## Type: integer -## Default: 20 +## Default: 30 # # Some interfaces need some time to come up or come asynchronously via hotplug. # WAIT_FOR_INTERFACES is a global wait for all mandatory interfaces in # seconds. If empty no wait occurs. # -WAIT_FOR_INTERFACES="20" +WAIT_FOR_INTERFACES="30" ## Type: yesno ## Default: yes --- config/sysconfig.dhcp-network +++ config/sysconfig.dhcp-network 2008/12/02 17:03:34 @@ -76,19 +76,31 @@ # DHCLIENT_LEASE_TIME="" +## Type: yesno +## Default: yes +# +# dhcpcd -E/--lastlease option +# +# This setting controls whether dhcpcd should try to use DHCP settings +# provided in its last lease when the dhcp-server is not reachable and +# the lease hasn't expired yet. +# Set this variable to "no" to disable the fallback to the last lease. +# +DHCLIENT_USE_LAST_LEASE=yes + ## Type: integer -## Default: 999999 +## Default: "0" # -# (only dhcpcd does use this setting) +# dhcpcd -t/--timeout option # -# You can set the timeout (dhcpcd will terminate after this time when it -# does not get a reply from the server). +# You can set the timeout - dhcpcd will terminate after this time when +# does not get a reply from the dhcp server. The dhcpcd default timeout +# is 20 seconds, we set it to 0 to and wait forever to get a lease. # -# The default timeout of dhcpcd is 20 seconds. However, we'll set it to a -# much longer time. dhcpcd will then run as a daemon in the background and -# broadcast a DHCPDISCOVER once in a while, trying to get a lease. +# Note: In the past, this setting was set to a much higher value (999999) +# by default, because the dhcpcd < 3.2.3 didn't provided a infinite one. # -DHCLIENT_TIMEOUT="999999" +DHCLIENT_TIMEOUT="0" ## Type: string ## Default: AUTO --- scripts/ifup-dhcp +++ scripts/ifup-dhcp 2008/12/02 17:00:10 @@ -267,6 +267,7 @@ args="--netconfig -L" #test "$AUTOIP" != "yes" && args="$args -L" + test "$DHCLIENT_USE_LAST_LEASE" = "yes" && args="$args -E" test "$DHCLIENT_DEBUG" = "yes" && args="$args -d" test "$DHCLIENT_SET_HOSTNAME" = "yes" && args="$args -HHH" test "$DHCLIENT_SET_DEFAULT_ROUTE" != "yes" && args="$args -G"