summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-11-08 15:21:08 +0100
committerJan Pokorný <jpokorny@redhat.com>2013-11-08 15:27:18 +0100
commit0cef95a1edf6e89974857b12b2bc8335042c3932 (patch)
tree2aab970abb6a2f88735b43b4d086c1ef699ef60e
parentf694f21eed10fa1f7be1e1d623c509f222e1104e (diff)
downloadcluster-overview-0cef95a1edf6e89974857b12b2bc8335042c3932.tar.gz
cluster-overview-0cef95a1edf6e89974857b12b2bc8335042c3932.tar.xz
cluster-overview-0cef95a1edf6e89974857b12b2bc8335042c3932.zip
cman: add qdiskd
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-rwxr-xr-xcluster-cman.py6
-rw-r--r--lib_cman.py19
2 files changed, 25 insertions, 0 deletions
diff --git a/cluster-cman.py b/cluster-cman.py
index 1c03e5a..60991cb 100755
--- a/cluster-cman.py
+++ b/cluster-cman.py
@@ -179,6 +179,8 @@ graph = lambda\
)
,CmanClustat('node_b-clustat'
)
+ ,CmanQdiskd('node_b-qdiskd'
+ )
,UnixSocket('node_b-cman_client'
,label='/var/run/\ncman_client'
)
@@ -210,6 +212,10 @@ graph = lambda\
('node_b-rgmanager'
,'node_b-libccsconfdb'
)
+ ,Consume\
+ ('node_b-qdiskd'
+ ,'node_b-libccsconfdb'
+ )
,Produce\
('node_b-service_cman'
,'node_b-cman_client'
diff --git a/lib_cman.py b/lib_cman.py
index bc1eecd..80fbfb2 100644
--- a/lib_cman.py
+++ b/lib_cman.py
@@ -274,6 +274,25 @@ class CmanModclusterd(Daemon, CmanModclusterdUpdatesPeer):
)
+
+class CmanQdiskd(Daemon):
+ defaults = dict((
+ LABEL('qdiskd'),
+ ))
+ summary = \
+ "qdiskd is the cluster quorum disk daemon"
+ repo = dict(
+ git='git://git.fedorahosted.org/git/cluster.git',
+ web='https://git.fedorahosted.org/cgit/cluster.git',
+ ml='https://lists.fedorahosted.org/mailman/listinfo/cluster-commits',
+ )
+ ids = dict(
+ srpm='cluster',
+ rpm='cman',
+ rhbz='cluster',
+ )
+
+
class CmanModcluster(Executable):
defaults = dict((
LABEL('modcluster'),