Skip to content

lock

nornir_scrapli.tasks.netconf_lock

netconf_lock(task: Task, target: str) -> Result

Lock the device with scrapli_netconf

Parameters:

Name Type Description Default
task Task

nornir task object

required
target str

configuration source to target; running|startup|candidate

required

Returns:

Name Type Description
Result Result

nornir result object with Result.result value set the string result of the get operation

Source code in tasks/netconf/lock.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
def netconf_lock(
    task: Task,
    target: str,
) -> Result:
    """
    Lock the device with scrapli_netconf

    Args:
        task: nornir task object
        target: configuration source to target; running|startup|candidate

    Returns:
        Result: nornir result object with Result.result value set the string result of the
            get operation

    Raises:
        N/A

    """
    scrapli_conn = task.host.get_connection("scrapli_netconf", task.nornir.config)
    scrapli_response = scrapli_conn.lock(target=target)

    result = ScrapliResult(
        host=task.host,
        result=process_command_result(scrapli_response=scrapli_response),
        scrapli_response=scrapli_response,
        changed=True,
    )
    return result