Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- In include-raw-integration-deploy-openstack-run-test.sh line 642:
- for ((inx_ip2=$(($inx_ip1+1));inx_ip2<${#ALL_NODES[@]};inx_ip2++))
- ^-- SC2004: $/${} is unnecessary on arithmetic variables.
- In include-raw-integration-deploy-openstack-run-test.sh line 644:
- KEY1=0x`dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64`
- ^-- SC2006: Use $(..) instead of legacy `..`.
- In include-raw-integration-deploy-openstack-run-test.sh line 645:
- KEY2=0x`dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64`
- ^-- SC2006: Use $(..) instead of legacy `..`.
- In include-raw-integration-deploy-openstack-run-test.sh line 646:
- ID=0x`dd if=/dev/urandom count=4 bs=1 2> /dev/null| xxd -p -c 8`
- ^-- SC2006: Use $(..) instead of legacy `..`.
- In include-raw-integration-deploy-openstack-run-test.sh line 649:
- ${SSH} $ip1 "sudo ip xfrm state add src $ip1 dst $ip2 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 650:
- ${SSH} $ip1 "sudo ip xfrm state add src $ip2 dst $ip1 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 651:
- ${SSH} $ip1 "sudo ip xfrm policy add src $ip1 dst $ip2 proto udp dir out tmpl src $ip1 dst $ip2 proto esp reqid $ID mode transport"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 652:
- ${SSH} $ip1 "sudo ip xfrm policy add src $ip2 dst $ip1 proto udp dir in tmpl src $ip2 dst $ip1 proto esp reqid $ID mode transport"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 654:
- ${SSH} $ip2 "sudo ip xfrm state add src $ip2 dst $ip1 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 655:
- ${SSH} $ip2 "sudo ip xfrm state add src $ip1 dst $ip2 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 656:
- ${SSH} $ip2 "sudo ip xfrm policy add src $ip2 dst $ip1 proto udp dir out tmpl src $ip2 dst $ip1 proto esp reqid $ID mode transport"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 657:
- ${SSH} $ip2 "sudo ip xfrm policy add src $ip1 dst $ip2 proto udp dir in tmpl src $ip1 dst $ip2 proto esp reqid $ID mode transport"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 665:
- ${SSH} $ip "sudo ip xfrm policy list"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
- In include-raw-integration-deploy-openstack-run-test.sh line 666:
- ${SSH} $ip "sudo ip xfrm state list"
- ^-- SC2086: Double quote to prevent globbing and word splitting.
Advertisement
Add Comment
Please, Sign In to add comment