summaryrefslogtreecommitdiffstats
path: root/lib_rhel.py
blob: 7a228cfd5eb802ba277fbce1a85cd4c62eea3f4b (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
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
#!/usr/bin/env python
# vim: set fileencoding=UTF-8:
# Copyright 2013 Red Hat, Inc.
# Author: Jan Pokorný <jpokorny at redhat dot com>
# Distributed under GPLv2+;  generated content under CC-BY-SA 3.0
# (to view a copy, visit http://creativecommons.org/licenses/by-sa/3.0/)
"""Library comprising general (non-cluster) RHEL entities"""

from lib_nodes import *


#
# nodes
#

class RhelSnmpd(Daemon):
    defaults = dict((
        LABEL('snmpd'),
    ))
    summary = \
    "Snmpd is daemon to respond to SNMP request packets"
    web = 'http://net-snmp.sourceforge.net/'
    man = [
        'snmpd(8)',
    ]
    #srpm = 'net-snmp'
    rpm = 'net-snmp'
    #rhbz = 'net-snmp'


class RhelCimserver(Daemon):
    defaults = dict((
        LABEL('cimserver'),
    ))
    summary = \
    "CIM Server"
    web = 'http://www.openpegasus.org/'
    man = [
        'cimserver(8)',
    ]
    #srpm = 'tog-pegasus'
    rpm = 'tog-pegasus'
    #rhbz = 'tog-pegasus'


class RhelSaslauthd(Daemon):
    defaults = dict((
        LABEL('saslauthd'),
    ))
    summary = \
    "sasl authentication server"
    web = 'http://asg.web.cmu.edu/sasl/sasl-library.html'
    man = [
        'saslauthd(8)',
    ]
    #srpm = 'cyrus-sasl'
    rpm = 'cyrus-sasl'
    #rhbz = 'cyrus-sasl'