You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fix for the cfgsave issue mentioned in #100 (comment) has been made in commit 447a063 but has been overwritten (or rolled back) via commit 9d0d60d#r123304744.
The cfgsave was only implemented when deleting zones and not when adding.
For us this is quite a big issue as we don't want cfgenable with each new zone.
Wrong code:
if cfgname is not None:
failed_msg = "CFG ENABLE failed"
ret_code = cfg_enable(fos_ip_addr, https, auth, vfid,
result, checksum, cfgname, timeout)
else:
failed_msg = "CFG SAVE failed"
ret_code = cfg_save(fos_ip_addr, https, auth, vfid,
Hi
The fix for the cfgsave issue mentioned in #100 (comment) has been made in commit 447a063 but has been overwritten (or rolled back) via commit 9d0d60d#r123304744.
The cfgsave was only implemented when deleting zones and not when adding.
For us this is quite a big issue as we don't want cfgenable with each new zone.
Wrong code:
Should be replaced with:
The text was updated successfully, but these errors were encountered: