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