-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First pass at 2.0 migration (for nautobot) and nornir-nautobot 3.0
- Loading branch information
1 parent
bff0ac4
commit 1964295
Showing
23 changed files
with
1,439 additions
and
1,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
mkdocs==1.3.1 | ||
mkdocs-material==8.3.9 | ||
mkdocstrings==0.19 | ||
mkdocstrings-python==0.7.1 | ||
mkdocs==1.5.2 | ||
mkdocs-material==9.2.4 | ||
mkdocstrings==0.22.0 | ||
mkdocstrings-python==1.5.2 | ||
mkdocs-version-annotations==1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
"""network_importer driver for arista_eos.""" | ||
"""nornir dispatcher for arista_eos.""" | ||
|
||
from .default import NautobotNornirDriver as DefaultNautobotNornirDriver | ||
from nornir_nautobot.plugins.tasks.dispatcher.default import NapalmDefault, NetmikoDefault | ||
|
||
|
||
class NautobotNornirDriver(DefaultNautobotNornirDriver): | ||
"""Collection of Nornir Tasks specific to Arista EOS devices.""" | ||
class NapalmAristaEos(NapalmDefault): | ||
"""Collection of Napalm Nornir Tasks specific to Arista EOS devices.""" | ||
|
||
|
||
class NetmikoAristaEos(NetmikoDefault): | ||
"""Collection of Netmiko Nornir Tasks specific to Arista EOS devices.""" | ||
|
||
config_command = "show run" |
Oops, something went wrong.