mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
17 lines
460 B
Python
17 lines
460 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.1'
|
||
|
author = 'Victor Golovanenko'
|
||
|
author_email = 'drygdryg2014@yandex.ru'
|
||
|
default_settings = {
|
||
|
'exclude_virtual_interfaces': True
|
||
|
}
|
||
|
|
||
|
|
||
|
config = Config
|