wip - inventory

This commit is contained in:
Solvik Blum 2019-08-06 14:52:57 +02:00
parent 1902b24c13
commit 823ecc6bf9
No known key found for this signature in database
GPG key ID: CC12B3DC262B6C47
9 changed files with 439 additions and 1 deletions

17
netbox_agent/raid/base.py Normal file
View file

@ -0,0 +1,17 @@
class RaidController():
def get_product_name(self):
raise NotImplemented
def get_serial_number(self):
raise NotImplemented
def get_manufacturer(self):
raise NotImplemented
def get_firmware_version(self):
raise NotImplemented
class Raid():
def get_controllers(self):
raise NotImplemented