diff --git a/networking_generic_switch/devices/netmiko_devices/cumulus.py b/networking_generic_switch/devices/netmiko_devices/cumulus.py index 2547979a..94ef4937 100644 --- a/networking_generic_switch/devices/netmiko_devices/cumulus.py +++ b/networking_generic_switch/devices/netmiko_devices/cumulus.py @@ -171,9 +171,9 @@ def send_config_set(self, net_connect, cmd_set): :returns: The output of the configuration commands. """ cmd_set.append('nv config apply --assume-yes') - net_connect.enable() # NOTE: Do not exit config mode because save needs elevated # privileges return net_connect.send_config_set(config_commands=cmd_set, cmd_verify=False, + enter_config_mode=False, exit_config_mode=False)