Fix BMCException handling
[ta/remote-installer.git] / src / remoteinstaller / installer / bmc_management / oe19.py
index b514fd5..dc44d99 100644 (file)
 from .or18 import OR18
 import logging
 
-class BMCException(Exception):
-    pass
-
 class OE19(OR18):
-    def __init__(self, host, user, passwd, log_path=None):
-        super(OE19, self).__init__(host, user, passwd, log_path)
+    def __init__(self, host, user, passwd, priv_level='ADMINISTRATOR', log_path=None):
+        super(OE19, self).__init__(host, user, passwd, priv_level, log_path)
 
     def _set_boot_from_virtual_media(self):
         logging.debug('Set boot from floppy (%s), and boot after that', self._host)