mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
22 lines
686 B
Python
22 lines
686 B
Python
from extras.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 devices'
|
|
version = '0.2.0'
|
|
author = 'Victor Golovanenko'
|
|
author_email = 'drygdryg2014@yandex.ru'
|
|
default_settings = {
|
|
'exclude_virtual_interfaces': True,
|
|
'include_interfaces_panel': False,
|
|
# Compare description during diff
|
|
# If compare is true, description will also be synced to device
|
|
# Otherwise not.
|
|
'compare_description': True
|
|
}
|
|
|
|
|
|
config = Config
|