~charmers/charms/trusty/rsyslog/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Remote listening for aggregation
{% if protocol == "udp" %}
$ModLoad imudp
$UDPServerRun 514
{% elif protocol == "tcp" %}
$ModLoad imtcp
$InputTCPServerRun 514
{% else %}
$ModLoad imrelp
$InputRELPServerRun 2514
{% endif %}

{% if nova_logs == True %}
   {% include 'nova-logging.conf' %}
{% endif %}