Skip to content

Commit 9700be0

Browse files
author
rwxd
committed
läuft
1 parent d0788bd commit 9700be0

File tree

16 files changed

+191
-106
lines changed

16 files changed

+191
-106
lines changed

data/hosts/mycompany/leaf1.example.com/topology.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,3 @@ interfaces:
88
enabled: true
99
addresses:
1010
- address: 228.139.233.56
11-
12-
- name: GigabitEthernet0/1
13-
description: "Port 1"
14-
type: ethernet
15-
enabled: true
16-
addresses:
17-
- address: 206.12.48.220
18-
- address: 0e92:1d5b:e53e:0bf9:047b:5a9f:10d6:710a
19-
mtu: 1500
20-
21-
- name: GigabitEthernet0/2
22-
description: "Port 2"
23-
type: ethernet
24-
enabled: true

docs/schemas/build.schema.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html lang=en> <head><link rel=stylesheet type=text/css href="https://fonts.googleapis.com/css?family=Overpass:300,400,600,800"><script src=https://code.jquery.com/jquery-3.4.1.min.js integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin=anonymous></script><link href=https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css rel=stylesheet integrity=sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T crossorigin=anonymous><script src=https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js integrity=sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM crossorigin=anonymous></script><link rel=stylesheet type=text/css href=schema_doc.css><script src=https://use.fontawesome.com/facf9fa52c.js></script><script src=schema_doc.min.js></script><meta charset=utf-8><title>JSON Schema Definitions for Network Objects</title></head> <body onload=anchorOnLoad(); id=root><h1>JSON Schema Definitions for Network Objects</h1> <div class=breadcrumbs></div><span class="badge badge-dark value-type">Type: object</span><br> <footer> <p class=generated-by-footer>Generated using <a href=https://github.com/coveooss/json-schema-for-humans>json-schema-for-humans</a> on 2022-01-09 at 23:11:44 +0100</p> </footer></body> </html>
1+
<!DOCTYPE html><html lang=en> <head><link rel=stylesheet type=text/css href="https://fonts.googleapis.com/css?family=Overpass:300,400,600,800"><script src=https://code.jquery.com/jquery-3.4.1.min.js integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin=anonymous></script><link href=https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css rel=stylesheet integrity=sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T crossorigin=anonymous><script src=https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js integrity=sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM crossorigin=anonymous></script><link rel=stylesheet type=text/css href=schema_doc.css><script src=https://use.fontawesome.com/facf9fa52c.js></script><script src=schema_doc.min.js></script><meta charset=utf-8><title>JSON Schema Definitions for Network Objects</title></head> <body onload=anchorOnLoad(); id=root><h1>JSON Schema Definitions for Network Objects</h1> <div class=breadcrumbs></div><span class="badge badge-dark value-type">Type: object</span><br> <footer> <p class=generated-by-footer>Generated using <a href=https://github.com/coveooss/json-schema-for-humans>json-schema-for-humans</a> on 2022-01-09 at 23:20:46 +0100</p> </footer></body> </html>

docs/schemas/routing.schema.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/schemas/system.schema.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/schemas/topology.schema.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

eve/cmd/scope.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ def device(device: str = typer.Argument(..., help='Device to get the scope for')
2828
console.print(Panel.fit(scope_panel, title='Scopes'))
2929

3030
searchpaths_panel = '\n'.join([str(p) for p in searchpaths])
31-
console.print(Panel.fit(searchpaths_panel, title='Searchpaths'))
31+
console.print(
32+
Panel.fit(
33+
searchpaths_panel,
34+
title='Searchpaths',
35+
subtitle='[green]Paths are searched top down.[/green]',
36+
)
37+
)
3238

3339

3440
def get_key_strings_from_dict(data: dict) -> List[Tuple[str, str]]:

eve/models/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: build.schema.json
3-
# timestamp: 2022-01-09T22:11:44+00:00
3+
# timestamp: 2022-01-09T22:20:46+00:00
44

55
from __future__ import annotations
66

eve/models/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: system.schema.json
3-
# timestamp: 2022-01-09T22:11:44+00:00
3+
# timestamp: 2022-01-09T22:20:45+00:00
44

55
from __future__ import annotations
66

eve/models/topology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: topology.schema.json
3-
# timestamp: 2022-01-09T22:11:44+00:00
3+
# timestamp: 2022-01-09T22:20:45+00:00
44

55
from __future__ import annotations
66

0 commit comments

Comments
 (0)