Repository: cloudstack Updated Branches: refs/heads/master 2fbccf1c3 -> e6de9abeb
CLOUDSTACK-8508 Install wget package inside LXC vm This closes #295 Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e6de9abe Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e6de9abe Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e6de9abe Branch: refs/heads/master Commit: e6de9abeb485586c1c96d808496e64eb994f6f5f Parents: 2fbccf1 Author: sanjeev <[email protected]> Authored: Mon May 25 16:28:09 2015 +0530 Committer: sanjeev <[email protected]> Committed: Mon May 25 17:04:34 2015 +0530 ---------------------------------------------------------------------- test/integration/component/test_vpc_vm_life_cycle.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e6de9abe/test/integration/component/test_vpc_vm_life_cycle.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_vpc_vm_life_cycle.py b/test/integration/component/test_vpc_vm_life_cycle.py index e185e96..b4fbb09 100644 --- a/test/integration/component/test_vpc_vm_life_cycle.py +++ b/test/integration/component/test_vpc_vm_life_cycle.py @@ -353,7 +353,7 @@ class TestVMLifeCycleVPC(cloudstackTestCase): services=cls.services["lbrule"], traffictype='Ingress' ) - + cls.services["icmp_rule"]["protocol"] = "all" cls.nwacl_internet_1 = NetworkACL.create( cls.api_client, networkid=cls.network_1.id, @@ -843,6 +843,7 @@ class TestVMLifeCycleVPC(cloudstackTestCase): ipaddress=self.public_ip_1.ipaddress.ipaddress, reconnect=True) self.debug("SSH into VM is successfully") + ssh.execute("yum install wget -y") except Exception as e: self.fail("Failed to SSH into instance") @@ -1146,7 +1147,7 @@ class TestVMLifeCycleSharedNwVPC(cloudstackTestCase): services=cls.services["lbrule"], traffictype='Ingress' ) - + cls.services["icmp_rule"]["protocol"] = "all" cls.nwacl_internet_1 = NetworkACL.create( cls.api_client, networkid=cls.network_1.id, @@ -1596,6 +1597,7 @@ class TestVMLifeCycleSharedNwVPC(cloudstackTestCase): ipaddress=self.public_ip_1.ipaddress.ipaddress, reconnect=True) self.debug("SSH into VM is successfully") + ssh.execute("yum install wget -y") except Exception as e: self.fail("Failed to SSH into instance") @@ -2885,7 +2887,7 @@ class TestVMLifeCycleDiffHosts(cloudstackTestCase): services=cls.services["lbrule"], traffictype='Ingress' ) - + cls.services["icmp_rule"]["protocol"] = "all" cls.nwacl_internet = NetworkACL.create( cls.api_client, networkid=cls.network_1.id, @@ -3456,6 +3458,7 @@ class TestVMLifeCycleDiffHosts(cloudstackTestCase): "get_ssh_client should return ssh handle") self.debug("SSH into VM is successfully") + ssh.execute("yum install wget -y") except Exception as e: self.fail("Failed to SSH into instance: %s" % e)
