summaryrefslogtreecommitdiffstats
path: root/formats/ccs.py
blob: dd254b29d278ddd3ff122aa5b872d572651a476f (plain)
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
# -*- coding: UTF-8 -*-
# Copyright 2012 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2 (a copy included | http://gnu.org/licenses/gpl-2.0.txt)
"""Cluster configuration system (ccs) format"""
__author__ = "Jan Pokorný <jpokorny at redhat dot com>"

from ..format import XML


class ccs(XML):
    """Cman-based cluster stack configuration (cluster.conf)

    Sometimes called Cluster Configuration System (ccs).
    """
    # XML
    root = 'cluster'


class ccsflat(ccs):
    """Cman-based cluster stack configuration (cluster.conf)

    Sometimes (ehm, exclusively by me) called Cluster Configuration System Flat.
    """
    pass