From ee3fc417d5256956a6afbbb5dd659d8f09124d18 Mon Sep 17 00:00:00 2001 From: Don Dugger Date: Tue, 6 Dec 2011 12:07:20 -0700 Subject: [PATCH] Use iputils-arping package for Ubuntu Oneiric distribution Turns out the `arping' package, currently installed by the script, is incompatible with `network-manager', the default network configuration package for recent Ubuntu distributions. (Losing network connectivity on a reboot after running `stack.sh' is a little disconcerting.) Forturnately, the `iputils-apring' package provides the same functionality and is compatible with `network-manager' so install that one instead. Change-Id: Id6e89cdf3e590481f870127697baa453b34fbc24 Signed-off-by: Don Dugger --- files/apts/nova | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/apts/nova b/files/apts/nova index f4fe4595d1..b034509c2e 100644 --- a/files/apts/nova +++ b/files/apts/nova @@ -2,7 +2,8 @@ dnsmasq-base dnsmasq-utils # for dhcp_release only available in dist:oneiric kpartx parted -arping # used for send_arp_for_ha option in nova-network +arping # only available in dist:natty +iputils-arping # only available in dist:oneiric mysql-server # NOPRIME python-mysqldb python-xattr # needed for glance which is needed for nova --- this shouldn't be here