mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
22 lines
679 B
Python
22 lines
679 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
|
|
'compare_description': False,
|
|
# Sync or not description from device type
|
|
'exclude_description': False
|
|
}
|
|
|
|
|
|
config = Config
|