diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-06-15 07:31:49 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-06-15 07:32:24 -0500 |
commit | 7bd122c45f952f59a9b8293a0d60e32eb5f6cb19 (patch) | |
tree | 0f79e0ff9480e6862a3d2c0f87e6c13cc5cf3895 | |
parent | 7208685b13a35f7f25cb4a7221058f358453cb50 (diff) |
do not create security group as part of install.
Change-Id: I21c2b029e1b36c5a87cfb000ac146ec825adfca3
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
-rwxr-xr-x | ci/openstack.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/openstack.sh b/ci/openstack.sh index 2750bc51..310cb8a3 100755 --- a/ci/openstack.sh +++ b/ci/openstack.sh @@ -109,8 +109,8 @@ else --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \ --disable-dhcp --gateway $EXTNET_GW $EXTNET_NET # configure security groups - neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default - neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default +# neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default +# neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default fi |