17 lines
450 B
Python
Raw Normal View History

from netbox.plugins import PluginConfig
2021-04-20 07:22:26 +00: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-17 16:21:03 -06:00
version = '0.4.1'
author = 'Keith Knowles'
author_email = 'mkknowles@outlook.com'
2021-04-20 07:22:26 +00:00
default_settings = {
'exclude_virtual_interfaces': True
2021-04-20 07:22:26 +00:00
}
config = Config