mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2025-02-21 21:32:21 +03:00
This plugin has been re-developed for Netbox 4. The sync button has been redesigned as well as the colors of the sync table.
17 lines
450 B
Python
17 lines
450 B
Python
from netbox.plugins import PluginConfig
|
|
|
|
|
|
class Config(PluginConfig):
|
|
name = 'netbox_interface_sync'
|
|
verbose_name = 'NetBox interface synchronization'
|
|
description = 'Syncing interfaces with the interfaces from device type for NetBox 4'
|
|
version = '0.4.0'
|
|
author = 'Keith Knowles'
|
|
author_email = 'mkknowles@outlook.com'
|
|
default_settings = {
|
|
'exclude_virtual_interfaces': True
|
|
}
|
|
|
|
|
|
config = Config
|