Check to make sure the firewalld client is connected before proceeding

Fixes #6911
reviewable/pr18780/r1
James Cammarata 11 years ago
parent 556c780ac9
commit 0c96e2f33b

@ -85,8 +85,13 @@ try:
from firewall.client import FirewallClient
fw = FirewallClient()
if not fw.connected:
raise Exception('failed to connect to the firewalld daemon')
except ImportError:
print "fail=True msg='firewalld required for this module'"
print "failed=True msg='firewalld required for this module'"
sys.exit(1)
except Exception, e:
print "failed=True msg='%s'" % str(e)
sys.exit(1)
################

Loading…
Cancel
Save