2024-05-12 11:58:17 -06:00
|
|
|
from netbox.plugins import PluginConfig
|
2021-04-20 07:22:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Config(PluginConfig):
|
|
|
|
name = 'netbox_interface_sync'
|
2024-05-17 16:00:56 -06:00
|
|
|
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'
|
2024-05-17 16:00:56 -06:00
|
|
|
author = 'Keith Knowles'
|
|
|
|
author_email = 'mkknowles@outlook.com'
|
2021-04-20 07:22:26 +00:00
|
|
|
default_settings = {
|
2024-05-17 16:00:56 -06:00
|
|
|
'exclude_virtual_interfaces': True
|
2021-04-20 07:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
config = Config
|