-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
Support ONPARENT option for aliases #41
Comments
Is this a redhat-centric option? Could you provide an example ifcfg-* file that shows what you would like to be created? |
I'm not sure if it's redhat specifically, but that's what I'm using. cat /etc/sysconfig/network-scripts/ifcfg-eth0:rm File managed by PuppetDEVICE=eth0:rm Useful for when an external program (not the OS) is in charge of managing whether or not the VIP should be up on this particular host. |
The redhat provider supports the network_config { 'eth0:rm'
method => static,
address => address,
netmask => netmask,
options => {
'USERCTL' => 'yes',
'ONPARENT' => 'no',
}
} Does this look like it would suit your needs? |
It would indeed, thanks for pointing me in the right direction. |
Fairly self-explanatory I guess. There's currently no support built in for the ONPARENT optiion of an interface alias. Useful for floating IP type vips that shouldn't automatically come up when the parent does.
The text was updated successfully, but these errors were encountered: