Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ The plugin is available as a Python package in pypi and can be installed with pi
pip install ntc-netbox-plugin-onboarding
```

> The plugin is compatible with NetBox 2.8.1 and higher

To ensure NetBox Onboarding plugin is automatically re-installed during future upgrades, create a file named `local_requirements.txt` (if not already existing) in the NetBox root directory (alongside `requirements.txt`) and list the `ntc-netbox-plugin-onboarding` package:

```no-highlight
Expand Down
1 change: 1 addition & 0 deletions netbox_onboarding/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class OnboardingConfig(PluginConfig):
description = "A plugin for NetBox to easily onboard new devices."
base_url = "onboarding"
required_settings = []
min_version = "2.8.1"
default_settings = {
"create_platform_if_missing": True,
"create_manufacturer_if_missing": True,
Expand Down