mirror of https://github.com/apache/cloudstack.git
Merge release branch 4.6 to master
* 4.6: CLOUDSTACK-9097 Make public ip work immediately debian: allow rules to pick ACS_BUILD_OPTS from env
This commit is contained in:
commit
58ba44a1c0
|
|
@ -15,7 +15,7 @@ override_dh_auto_configure:
|
|||
override_dh_auto_build:
|
||||
mvn -T C1.5 clean package -Psystemvm -DskipTests -Dsystemvm \
|
||||
-Dcs.replace.properties=replace.properties.tmp \
|
||||
-Dmaven.repo.local=$(HOME)/.m2/repository
|
||||
-Dmaven.repo.local=$(HOME)/.m2/repository \
|
||||
${ACS_BUILD_OPTS}
|
||||
|
||||
override_dh_auto_clean:
|
||||
|
|
|
|||
|
|
@ -588,7 +588,7 @@ class CsIP:
|
|||
|
||||
def arpPing(self):
|
||||
cmd = "arping -c 1 -I %s -A -U -s %s %s" % (
|
||||
self.dev, self.address['public_ip'], self.address['public_ip'])
|
||||
self.dev, self.address['public_ip'], self.address['gateway'])
|
||||
CsHelper.execute(cmd)
|
||||
|
||||
# Delete any ips that are configured but not in the bag
|
||||
|
|
|
|||
Loading…
Reference in New Issue