-
Notifications
You must be signed in to change notification settings - Fork 4
/
metainfo.xml
70 lines (68 loc) · 2.43 KB
/
metainfo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0"?>
<metainfo>
<schemaVersion>2.0</schemaVersion>
<services>
<service>
<name>POSTGRESQL</name>
<displayName>PostgreSQL</displayName>
<comment>
PostgreSQL是以加州大学伯克利分校计算机系开发的 POSTGRES,现在已经更名为PostgreSQL,
PostgreSQL支持大部分 SQL标准并且提供了许多其他现代特性:
复杂查询、外键、触发器、视图、事务完整性、MVCC。
同样,PostgreSQL 可以用许多方法扩展,
比如, 通过增加新的数据类型、函数、操作符、聚集函数、索引。免费使用、修改、和分发 PostgreSQL,
不管是私用、商用、还是学术研究使用。
</comment>
<version>9.5.1</version>
<requiredService>
<service>PGPOOL-II</service>
</requiredService>
<components>
<component>
<name>PostgreSQL-M</name>
<displayName>PSql Master</displayName>
<category>MASTER</category>
<cardinality>1+</cardinality>
<commandScript>
<script>scripts/PostgreSQL.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
<component>
<name>PostgreSQL-S</name>
<displayName>Psql slave</displayName>
<category>SLAVE</category>
<cardinality>0+</cardinality>
<commandScript>
<script>scripts/PostgreSqlSlave.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
<component>
<name>pgpool-II</name>
<displayName>pool master</displayName>
<category>MASTER</category>
<cardinality>1+</cardinality>
<commandScript>
<script>scripts/pgpool.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
</components>
<!-- what yum packages will be needed for the setup. These will be installed by install_packages() in master.py -->
<osSpecifics>
<osSpecific>
<osFamily>redhat5,redhat6,redhat7</osFamily>
<packages>
<package>
<name>glibc</name>
</package>
</packages>
</osSpecific>
</osSpecifics>
</service>
</services>
</metainfo>