Ensure var is valid first
This commit is contained in:
parent
a3df70014b
commit
e55f2f0b92
|
@ -394,6 +394,7 @@ def add_acl(zk_conn, network, direction, description, rule, order):
|
||||||
return False, 'ERROR: Could not find network "{}" in the cluster!'.format(network)
|
return False, 'ERROR: Could not find network "{}" in the cluster!'.format(network)
|
||||||
|
|
||||||
# Check if the ACL matches a description currently in the database
|
# Check if the ACL matches a description currently in the database
|
||||||
|
match_description = ''
|
||||||
full_acl_list = getNetworkACLs(zk_conn, net_vni, 'both')
|
full_acl_list = getNetworkACLs(zk_conn, net_vni, 'both')
|
||||||
for acl in full_acl_list:
|
for acl in full_acl_list:
|
||||||
if acl['description'] == description:
|
if acl['description'] == description:
|
||||||
|
|
Loading…
Reference in New Issue