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