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

« back to all changes in this revision

Viewing changes to ironic/drivers/modules/iboot.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-01-05 12:21:37 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20150105122137-171bqrdpcxqipunk
Tags: 2015.1~b1-0ubuntu1
* New upstream beta release:
  - d/control: Align version requirements with upstream release.
* d/watch: Update uversionmangle to deal with kilo beta versioning
  changes.
* d/control: Bumped Standards-Version to 3.9.6, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    missing_info = [key for key in REQUIRED_PROPERTIES if not info.get(key)]
53
53
    if missing_info:
54
54
        raise exception.MissingParameterValue(_(
55
 
              "The following iBoot credentials were not supplied to iBoot PDU "
56
 
              "driver: %s.") % missing_info)
 
55
              "Missing the following iBoot credentials in node's"
 
56
              " driver_info: %s.") % missing_info)
57
57
 
58
58
    address = info.get('iboot_address', None)
59
59
    username = info.get('iboot_username', None)