Fix version output when missing.
[plcapi.git] / db-config.d / 050-pcu_types
1 # -*-python-*-
2 # $Id$
3 # $URL$
4 #################### PCUs
5 ### Setup Initial PCU information
6         
7 pcu_types = [
8     {'model': 'HPiLO',
9      'name': 'HP iLO v1 or v2 (Integrated Lights-Out)', },
10     
11     {'model': 'IntelAMT',
12      'name': 'Intel AMT v2.5 or v3.0 (Active Management Technology)', },
13     
14     {'model': 'DRAC',
15      'name': 'DRAC - Dell Remote Access Control (all versions)', },
16     
17     {'model': 'OpenIPMI',
18      'name': 'OpenIPMI - Intelligent Platform Management Interface', },
19     
20     {'model': 'APCControl12p3',
21      'name': 'APC AP79xx or Masterswitch (sequence 1-2-port-3)', },
22     {'model': 'APCControl1p4',
23      'name': 'APC AP79xx or Masterswitch (sequence 1-port-4)', },
24     {'model': 'APCControl121p3',
25      'name': 'APC AP79xx or Masterswitch (sequence 1-2-1-port-3)', },
26     {'model': 'APCControl121p1',
27      'name': 'APC AP79xx or Masterswitch (sequence 1-2-1-port-1)', },
28     {'model': 'APCControl13p13',
29      'name': 'APC AP79xx or Masterswitch (sequence 1-3-port-1-3)', },
30     
31     {'model': 'BayTechRPC3NC', 
32      'name': 'BayTech with prompt RPC3-NC>', },
33     {'model': 'BayTechRPC16', 
34      'name': 'BayTech with prompt RPC-16>', },
35     {'model': 'BayTech',
36      'name': 'BayTech with prompt DS-RPC>', },
37     {'model': 'BayTechCtrlC', 
38      'name': 'BayTech Ctrl-C, 5, then with prompt DS-RPC>', },
39     {'model': 'BayTechCtrlCUnibe', 
40      'name': 'BayTech Ctrl-C, 3, then with prompt DS-RPC>', },
41     
42     {'model': 'BlackBoxPSMaverick',
43      'name': 'BlackBoxPSMaverick Web based controller'},
44     
45     {'model': 'IPAL', 
46      'name': 'IPAL - Dataprobe IP-41x & IP-81x', },
47     {'model': 'ePowerSwitchNew',
48      'name': 'ePowerSwitch Newer Models 1/4/8x', },
49     {'model': 'ePowerSwitchOld',
50      'name': 'ePowerSwitch Older Models 1/4/8x', },
51     
52     {'model': 'PM211MIP',
53      'name': 'Infratec PM221-MIP', },
54     
55     {'model': 'WTIIPS4',
56      'name': 'Western Telematic (WTI IPS-4)', },
57     
58     {'model': 'ManualPCU',
59      'name': 'Manual Administrator Operation (choose if model unknown)', },
60     ]
61
62 for pcu_type in pcu_types:
63     SetPCUType(pcu_type)
64