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