diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2018-09-19 15:10:40 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2018-09-19 15:20:03 +0400 |
commit | 38a476c4465363bb1f7d8ac0c23e165238622d78 (patch) | |
tree | f88a913b9436cbeb97a42005205f491482c035b9 /jjb/yardstick | |
parent | e59d12cec1800def7eac0025a1ba53bf17e4eeee (diff) |
Clean up RETURN rule from FORWARD chain
Remove obsolete/breaking RETURN rule from preparation
stage of Yardstick and Dovetail test suites.
Change-Id: I817780da95f10bc12c491e56806455d1aee25ece
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'jjb/yardstick')
-rwxr-xr-x | jjb/yardstick/yardstick-daily.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/jjb/yardstick/yardstick-daily.sh b/jjb/yardstick/yardstick-daily.sh index 783c64ee1..58d590c27 100755 --- a/jjb/yardstick/yardstick-daily.sh +++ b/jjb/yardstick/yardstick-daily.sh @@ -41,10 +41,6 @@ elif [[ ${INSTALLER_TYPE} == 'fuel' ]]; then cacert_file_vol="-v ${HOME}/os_cacert:/etc/ssl/certs/mcp_os_cacert" sshkey="-v ${SSH_KEY}:/root/.ssh/mcp.rsa" fi -# Set iptables rule to allow forwarding return traffic for container -if ! sudo iptables -C FORWARD -j RETURN 2> ${redirect} || ! sudo iptables -L FORWARD | awk 'NR==3' | grep RETURN 2> ${redirect}; then - sudo iptables -I FORWARD -j RETURN -fi opts="--privileged=true --rm" envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \ |