summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-manage2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nova-manage b/bin/nova-manage
index 56f89ce30..61ac86db6 100755
--- a/bin/nova-manage
+++ b/bin/nova-manage
@@ -56,7 +56,7 @@ class VpnCommands(object):
vpn = self.__vpn_for(project.id)
if vpn:
- out, err = utils.execute("ping -c1 -w1 %s > /dev/null; echo $?" % vpn['private_dns_name'])
+ out, err = utils.execute("ping -c1 -w1 %s > /dev/null; echo $?" % vpn['private_dns_name'], check_exit_code=False)
if out.strip() == '0':
net = 'up'
else: