Fix bug with unsetting keys

pull/1/head
Mark Veidemanis 7 years ago
parent 1145541155
commit ab7ac6bade

@ -671,9 +671,10 @@ class Helper(object):
toUnset = True
if spl[2] == "authtype":
if not spl[3] in ["sp", "ns"]:
failure("Authtype must be sp or ns, not %s" % spl[3])
return
if not toUnset:
if not spl[3] in ["sp", "ns"]:
failure("Authtype must be sp or ns, not %s" % spl[3])
return
if spl[2] == "enabled":
failure("Use the enable and disable commands to manage this")
return

Loading…
Cancel
Save