Fix ping shell when not SSH proxy is given.

Change-Id: I5cc4f391bc57aee1ef6ec2321dc358c85300be48
This commit is contained in:
Federico Ressi 2018-12-03 15:26:13 +01:00
parent b93ea7a345
commit 99d9029efe
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ from tempest.lib.common.utils import test_utils
from tobiko import config
SHELL = config.get_any_option('tobiko.shell.command',
default='bin/sh -c').split()
SHELL = (config.get_any_option('tobiko.shell.command') or
'bin/sh -c').split()
SG_RULES = {'ALLOW_ICMP':