From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 12 Feb 2008 17:29:13 -0000 Subject: [Cluster-devel] conga/ricci/modules cluster/ClusterStatus.cpp ... Message-ID: <20080212172913.24703.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2008-02-12 17:29:13 Modified files: ricci/modules/cluster: ClusterStatus.cpp ricci/modules/log: LogParser.cpp ricci/modules/rpm: PackageHandler.cpp ricci/modules/service: ServiceManager.cpp Log message: Pull out cmirror bits Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/cluster/ClusterStatus.cpp.diff?cvsroot=cluster&r1=1.26&r2=1.27 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/log/LogParser.cpp.diff?cvsroot=cluster&r1=1.15&r2=1.16 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/rpm/PackageHandler.cpp.diff?cvsroot=cluster&r1=1.21&r2=1.22 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/service/ServiceManager.cpp.diff?cvsroot=cluster&r1=1.17&r2=1.18 --- conga/ricci/modules/cluster/ClusterStatus.cpp 2008/01/30 17:12:14 1.26 +++ conga/ricci/modules/cluster/ClusterStatus.cpp 2008/02/12 17:29:12 1.27 @@ -263,7 +263,6 @@ if (use_qdisk) run_initd("qdiskd", true, false); - run_initd("cmirror", true, false); run_initd("clvmd", true, false); run_initd("gfs", true, false); run_initd("gfs2", true, false); @@ -276,7 +275,6 @@ run_chkconfig("qdiskd", true); else run_chkconfig("qdiskd", false); - run_chkconfig("cmirror", true); run_chkconfig("clvmd", true); run_chkconfig("gfs", true); run_chkconfig("gfs2", true); --- conga/ricci/modules/log/LogParser.cpp 2008/01/30 17:12:14 1.15 +++ conga/ricci/modules/log/LogParser.cpp 2008/02/12 17:29:12 1.16 @@ -47,7 +47,6 @@ "lock_gulmd_LTPX", "cman", "cman_tool", - "cmirror", "ccs", "ccs_tool", "ccsd", @@ -83,7 +82,6 @@ "lvm", "clvm", "clvmd", - "cmirror", "end_request", "buffer", "scsi", --- conga/ricci/modules/rpm/PackageHandler.cpp 2008/01/30 17:12:14 1.21 +++ conga/ricci/modules/rpm/PackageHandler.cpp 2008/02/12 17:29:13 1.22 @@ -507,7 +507,6 @@ set.packages.push_back("gfs2-utils"); if (RHEL5) { set.packages.push_back("gfs-utils"); - set.packages.push_back("cmirror"); if (kernel.find("xen") == kernel.npos) { set.packages.push_back("kmod-gfs"); set.packages.push_back("kmod-gfs2"); --- conga/ricci/modules/service/ServiceManager.cpp 2008/01/30 17:12:15 1.17 +++ conga/ricci/modules/service/ServiceManager.cpp 2008/02/12 17:29:13 1.18 @@ -522,8 +522,6 @@ } else if (RHEL5 || FC6) { descr = "Shared Storage: clvmd, gfs, gfs2"; servs.push_back("clvmd"); - if (RHEL5) - servs.push_back("cmirror"); servs.push_back("gfs"); servs.push_back("gfs2"); }