X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fremote-installer.git;a=blobdiff_plain;f=src%2Fremoteinstaller%2Finstaller%2Fbmc_management%2Foe19.py;h=dc44d99019ce2d7f710cea1e4179daad7dbe425f;hp=958801ce2c93be02e1439b62010c7219f1f6e3a1;hb=HEAD;hpb=f67d243ed72be60eb02dacad2584eb189cf6f4b7 diff --git a/src/remoteinstaller/installer/bmc_management/oe19.py b/src/remoteinstaller/installer/bmc_management/oe19.py index 958801c..eafd594 100644 --- a/src/remoteinstaller/installer/bmc_management/oe19.py +++ b/src/remoteinstaller/installer/bmc_management/oe19.py @@ -15,13 +15,10 @@ from .or18 import OR18 import logging -class BMCException(Exception): - pass - class OE19(OR18): 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) - self._run_ipmitool_command('chassis bootdev floppy options=persistent') + logging.debug('Set boot from cdrom (%s), and boot after that', self._host) + self._run_ipmitool_command('chassis bootdev cdrom options=persistent')