Fix dhcp-all-interfaces for ubuntu-minimal xenial

The start script of dhcp-all-interfaces currently requires ifup command.
ifup command provided by package ifupdown, which is not installed in
ubuntu-minimal Xenial.

This change adds ifupdown package for debian family, as it required for
dhcp-all-interfaces.

Closes-bug: #1647853

Change-Id: I6dfc0108ec067f350b22e9fb933b9e8d47b09fde
This commit is contained in:
Andrey Shestakov 2016-12-06 23:59:49 +02:00
parent f735864b78
commit a45ad8eaf5
2 changed files with 6 additions and 1 deletions

View File

@ -1 +1,2 @@
dhcp-client:
ifupdown:

View File

@ -8,9 +8,13 @@
},
"suse": {
"dhcp-client": "dhcp-client"
},
"debian": {
"ifupdown": "ifupdown"
}
},
"default": {
"dhcp-client": "isc-dhcp-client"
"dhcp-client": "isc-dhcp-client",
"ifupdown": ""
}
}