def delete_monitor_from_conf(monitor_id): success, errors, current_monitor = get_monitor_from_conf(monitor_id) if not success: return False, errors success, errors = delete_object_config("monitor", monitor_id) return success, errors
def delete_server_from_conf(server_id): success, errors, current_server = get_server_from_conf(server_id) if not success: return False, errors success, errors = delete_object_config("server", server_id) return success, errors
def delete_listener_from_conf(listener_id): success, errors, current_listener = get_listener_from_conf(listener_id) if not success: return False, errors success, errors = delete_object_config("listener", listener_id) return success, errors