diskimage-builder/diskimage_builder/elements/dhcp-all-interfaces/pkg-map
waleedm b50b8489d8 fix ifupdown pkg map for dhcp-all-interfaces of redhat family
Now as network-scripts package is derprecated, and NM should be the default for managing networking in redhat OS family, we need ifup/down scripts for dhcp-all-interfaces element and no one is providing them
So adding the package map for redhat family in the element source

Change-Id: I11e596e17477c39b156617762c4c5b840754ed64
2023-04-05 09:44:40 +00:00

26 lines
477 B
Plaintext

{
"family": {
"redhat": {
"dhcp-client": "dhclient",
"ifupdown": "NetworkManager-initscripts-updown",
"ndisc6": ""
},
"gentoo": {
"dhcp-client": "net-misc/dhcpcd",
"ndisc6": "net-misc/ndisc6"
},
"suse": {
"dhcp-client": "dhcp-client"
},
"debian": {
"ifupdown": "ifupdown",
"ndisc6": "ndisc6"
}
},
"default": {
"dhcp-client": "isc-dhcp-client",
"ifupdown": "",
"ndisc6": ""
}
}