netbox-plugin-interface-sync/netbox_interface_sync/__init__.py
NetTech2001 b48cfaca4b Ready for netboxcommunity
This plugin has been re-developed for Netbox 4. The sync button has been redesigned as well as the colors of the sync table.
2024-05-17 16:00:56 -06:00

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