netbox-agent/netbox_agent/cli.py

38 lines
991 B
Python
Raw Normal View History

2019-09-03 13:16:37 +02:00
from netbox_agent.logging import logging # NOQA
2019-08-26 15:38:44 +02:00
from netbox_agent.vendors.dell import DellHost
import netbox_agent.dmidecode as dmidecode
2019-09-03 13:16:37 +02:00
from netbox_agent.config import config
2019-08-26 15:38:44 +02:00
from netbox_agent.vendors.hp import HPHost
2019-08-26 16:39:36 +02:00
from netbox_agent.vendors.qct import QCTHost
2019-08-26 15:38:44 +02:00
from netbox_agent.vendors.supermicro import SupermicroHost
MANUFACTURERS = {
'Dell Inc.': DellHost,
'HP': HPHost,
'HPE': HPHost,
2019-08-26 15:38:44 +02:00
'Supermicro': SupermicroHost,
2019-08-26 16:39:36 +02:00
'Quanta Cloud Technology Inc.': QCTHost,
}
2019-09-03 13:16:37 +02:00
def run(config):
manufacturer = dmidecode.get_by_type('Chassis')[0].get('Manufacturer')
server = MANUFACTURERS[manufacturer](dmi=dmidecode)
2019-09-03 13:16:37 +02:00
if config.debug:
server.print_debug()
2019-09-03 13:16:37 +02:00
if config.register:
server.netbox_create(config)
if config.update_all or config.update_network or config.update_location or \
config.update_inventory:
server.netbox_update(config)
return True
def main():
2019-09-03 13:16:37 +02:00
return run(config)
if __name__ == '__main__':
main()