Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 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