summaryrefslogtreecommitdiffstats
path: root/filters/cluster/logging/logging_daemon/__init__.py
blob: bc9b05327e30734b833181edf898656781026149 (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
# -*- coding: UTF-8 -*-
# Copyright 2014 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2 (a copy included | http://gnu.org/licenses/gpl-2.0.txt)

ccs2needlexml = '''\
    <xsl:if test="@name='corosync' and @subsys">
        <logger_subsys>
            <xsl:copy-of select="@*[
                contains(concat(
                    '|debug',
                    '|logfile',
                    '|logfile_priority',
                    '|subsys',
                    '|syslog_facility',
                    '|syslog_priority',
                    '|to_logfile',
                    '|to_syslog',
                    '|'), concat('|', name(), '|')
                )
            ]"/>
        </logger_subsys>
    </xsl:if>
'''