~ubuntu-branches/ubuntu/trusty/maas/trusty-security

« back to all changes in this revision

Viewing changes to src/provisioningserver/power_schema.py

  • Committer: Package Import Robot
  • Author(s): Greg Lutostanski
  • Date: 2014-08-29 13:27:34 UTC
  • mto: (61.1.4 trusty-proposed)
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: package-import@ubuntu.com-20140829132734-d47evihju2etdwcy
Tags: upstream-1.5.4+bzr2294
ImportĀ upstreamĀ versionĀ 1.5.4+bzr2294

Show diffs side-by-side

added added

removed removed

Lines of Context:
255
255
            make_json_field('power_pass', "API password"),
256
256
        ],
257
257
    },
 
258
    {
 
259
        'name': 'mscm',
 
260
        'description': "Moonshot HP iLO Chassis Manager",
 
261
        'fields': [
 
262
            make_json_field('power_address', "IP for MSCM CLI API"),
 
263
            make_json_field('power_user', "MSCM CLI API user"),
 
264
            make_json_field('power_pass', "MSCM CLI API password"),
 
265
            make_json_field(
 
266
                'node_id',
 
267
                "Node ID - Must adhere to cXnY format "
 
268
                "(X=cartridge number, Y=node number)."),
 
269
        ],
 
270
    },
258
271
]