Skip to content

Commit c8d4484

Browse files
committed
Version and README Update
1 parent fd3b848 commit c8d4484

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# netbox-interface-synchronization
22
## Overview
3-
This plugin allows you to compare and synchronize interfaces between devices and device types in NetBox. It can be useful for finding and correcting inconsistencies between interfaces.
3+
This plugin allows you to compare and synchronize interface names and types between devices and device types in NetBox. It can be useful for finding and correcting inconsistencies between interfaces when changing the device type.
44
## Compatibility
55
Tested with NetBox versions 4.0.0, 4.0.1, 4.0.2. This plugin is not compatible with Netbox 2 or 3
66
## Installation
@@ -27,7 +27,7 @@ Don't forget to restart NetBox:
2727
sudo systemctl restart netbox
2828
```
2929
## Usage
30-
To sync the interfaces, edit the device and set the new device type and save the device. Then find the "Sync Interfaces" button:
30+
To sync the interfaces, edit the device and set the new device type and save the device. Then find the "Sync Interfaces" button at the bottom of the page:
3131
![Device page](docs/images/1_device_page.png)
3232
Mark the required actions with the checkboxes and click "Apply".
3333
![Interface comparison](docs/images/2_interface_comparison.png)

netbox_interface_synchronization/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
class Config(PluginConfig):
55
name = 'netbox_interface_synchronization'
66
verbose_name = 'NetBox Interface Synchronization'
7-
description = 'Syncing existing interfaces with the interfaces from a new device type in NetBox'
8-
version = '4.0.1'
7+
description = 'Syncing existing interface names and types with those from a new device type in NetBox'
8+
version = '4.0.2'
99
author = 'Keith Knowles'
1010
author_email = '[email protected]'
1111
default_settings = {

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
setup(
77
name='netbox-interface-synchronization',
8-
version='4.0.1',
9-
description='Syncing existing interfaces with the interfaces from a new device type in NetBox',
8+
version='4.0.2',
9+
description='Syncing existing interface names and types with those from a new device type in NetBox',
1010
long_description=long_description,
1111
long_description_content_type='text/markdown',
1212
author='Keith Knowles',

0 commit comments

Comments
 (0)