netbox-plugin-interface-sync/netbox_interface_sync/__init__.py

17 lines
450 B
Python
Raw Normal View History

from netbox.plugins import PluginConfig
2021-04-20 10:22:26 +03:00
class Config(PluginConfig):
name = 'netbox_interface_sync'
verbose_name = 'NetBox interface synchronization'
description = 'Syncing interfaces with the interfaces from device type for NetBox 4'
2024-05-18 01:21:03 +03:00
version = '0.4.1'
author = 'Keith Knowles'
author_email = 'mkknowles@outlook.com'
2021-04-20 10:22:26 +03:00
default_settings = {
'exclude_virtual_interfaces': True
2021-04-20 10:22:26 +03:00
}
config = Config