~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/drivers/ilo.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-03-30 11:14:57 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150330111457-kr4ju3guf22m4vbz
Tags: 2015.1~b3-0ubuntu1
* New upstream release.
  + d/control: 
    - Align with upstream dependencies.
    - Add dh-python to build-dependencies.
    - Add psmisc as a dependency. (LP: #1358820)
  + d/p/fix-requirements.patch: Rediffed.
  + d/ironic-conductor.init.in: Fixed typos in LSB headers,
    thanks to JJ Asghar. (LP: #1429962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
iLO Driver for managing HP Proliant Gen8 and above servers.
16
16
"""
17
17
 
18
 
from oslo.utils import importutils
 
18
from oslo_utils import importutils
19
19
 
20
20
from ironic.common import exception
21
21
from ironic.common.i18n import _
22
22
from ironic.drivers import base
23
23
from ironic.drivers.modules import agent
24
24
from ironic.drivers.modules.ilo import deploy
 
25
from ironic.drivers.modules.ilo import inspect
25
26
from ironic.drivers.modules.ilo import management
26
27
from ironic.drivers.modules.ilo import power
27
28
 
47
48
        self.console = deploy.IloConsoleInterface()
48
49
        self.management = management.IloManagement()
49
50
        self.vendor = deploy.VendorPassthru()
 
51
        self.inspect = inspect.IloInspect()
50
52
 
51
53
 
52
54
class IloVirtualMediaAgentDriver(base.BaseDriver):
70
72
        self.console = deploy.IloConsoleInterface()
71
73
        self.management = management.IloManagement()
72
74
        self.vendor = agent.AgentVendorInterface()
 
75
        self.inspect = inspect.IloInspect()