-
Notifications
You must be signed in to change notification settings - Fork 998
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #38155 - Use auto instead of dhcp for ipv6 interfaces #10420
Conversation
@@ -61,11 +61,7 @@ if subnet6 | |||
network_options.push("--ipv6=#{@iface.ip6}/#{subnet6.cidr}") | |||
network_options.push("--ipv6gateway=#{subnet6.gateway}") | |||
elsif subnet6.dhcp_boot_mode? | |||
if @use_slaac |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use_slaac
option is now unused so it should be removed, as well as the use-slaac
parameter. The alternative is to default the parameter to true
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think removing the parameter will be less confusing than having
use_slaac = hoast_parameter_true?('use-slaac', true)
WDYT?
cf11ac5
to
a9950e2
Compare
a9950e2
to
ddd03dc
Compare
@ekohl ready for another round. Removed the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works for me.
For other people with merge access: CI is still running as I write this. |
Is green, thanks @ShimShtein and @ekohl ! |
option
dhcp
does not use Router Advertisements to configure the network.