-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathset_lab_config.py
38 lines (32 loc) · 958 Bytes
/
set_lab_config.py
1
2
3
4
5
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
35
36
37
38
from nornir import InitNornir
from nornir_scrapli.tasks import cfg_load_config, cfg_commit_config
from nornir_utils.plugins.functions import print_result
from nornir_utils.plugins.tasks.data import load_yaml
from nornir_jinja2.plugins.tasks import template_file
def apply_config(task):
host_vars = task.run(
task=load_yaml,
file=f"inventory/host_vars/{task.host}.yaml",
)
task.host["facts"] = host_vars.result
config_template = task.run(
task=template_file,
template="base.j2",
path=f"templates/{task.host['type']}/",
)
config = config_template.result
task.run(
task=cfg_load_config,
config=config,
replace=True,
)
task.run(
task=cfg_commit_config,
source="running",
)
def main():
nr = InitNornir(config_file="config.yaml")
results = nr.run(task=apply_config)
print_result(results)
if __name__ == "__main__":
main()