Bump up ipa-ip-lookup-attempts to 6

To accommodate network setup that takes longer then
30 seconds increase the number of IP lookup attempts. This
allows for IPv6 setup that occurs after DHCP has time out.

Change-Id: I1351e150a63c6247210ca0cbc8ce0abfe82129cd
(cherry picked from commit c4bb694082)
This commit is contained in:
Derek Higgins 2019-11-10 22:48:33 +00:00 committed by Harald Jensås
parent 19b0b59e02
commit 9681fd712d
2 changed files with 6 additions and 1 deletions

View File

@ -69,7 +69,7 @@ cli_opts = [
cfg.IntOpt('ip_lookup_attempts',
min=1,
default=int(APARAMS.get('ipa-ip-lookup-attempts', 3)),
default=int(APARAMS.get('ipa-ip-lookup-attempts', 6)),
deprecated_name='ip-lookup-attempts',
help='The number of times to try and automatically '
'determine the agent IPv4 address. '

View File

@ -0,0 +1,5 @@
---
other:
- |
Bumps up ipa-ip-lookup-attempts to 6, adding extra time
for networking to be setup before giving up.