Use generic "dhcp-client" name

Every platform has a different name for their DHCP client, so use a
generic name "dhcp-client" in the package name and let everyone choose
their sub-name.  This also brings some consistency across simple-init
& dhcp-all-interfaces

Change-Id: I797aa7aacb13dfb7f35700463dc11d55552eb108
This commit is contained in:
Ian Wienand 2016-04-01 11:12:29 +11:00
parent a078e780ca
commit 11128b0673
4 changed files with 9 additions and 10 deletions

View File

@ -1 +1 @@
dhcpcd:
dhcp-client:

View File

@ -1,14 +1,13 @@
{
"family": {
"redhat": {
"isc-dhcp-client": "dhclient"
"dhcp-client": "dhclient"
},
"gentoo": {
"dhcpcd": "net-misc/dhcpcd"
"dhcp-client": "net-misc/dhcpcd"
}
},
"default": {
"isc-dhcp-client": "isc-dhcp-client",
"dhcpcd": ""
"dhcp-client": "isc-dhcp-client"
}
}

View File

@ -1,3 +1,3 @@
isc-dhcp-client:
dhcp-client:
net-tools:
ifupdown:

View File

@ -1,20 +1,20 @@
{
"family": {
"redhat": {
"isc-dhcp-client": "dhclient"
"dhcp-client": "dhclient"
},
"debian": {
"isc-dhcp-client": "isc-dhcp-client",
"dhcp-client": "isc-dhcp-client",
"ifupdown": "ifupdown"
},
"gentoo": {
"isc-dhcp-client": "net-misc/dhcp",
"dhcp-client": "net-misc/dhcp",
"python-pip": "dev-python/pip",
"net-tools": "sys-apps/net-tools"
}
},
"default": {
"isc-dhcp-client": "isc-dhcp-client",
"dhcp-client": "isc-dhcp-client",
"ifupdown": ""
}
}