mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2025-02-17 21:22:21 +03:00
17 lines
450 B
Python
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.1'
|
|
author = 'Keith Knowles'
|
|
author_email = 'mkknowles@outlook.com'
|
|
default_settings = {
|
|
'exclude_virtual_interfaces': True
|
|
}
|
|
|
|
|
|
config = Config
|