Пример #1
0
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
Пример #2
0
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
Пример #3
0
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
Пример #4
0
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
Пример #5
0
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
Пример #6
0
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