summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorhagbard <vyosdev@derith.de>2019-12-05 08:06:29 -0800
committerhagbard <vyosdev@derith.de>2019-12-05 08:06:29 -0800
commitc9390e9f1522cf5208dcdce59f2913639ab7fd6d (patch)
treec63b7863f07eb96d59c57a3326ff4504fbf01901 /src/conf_mode
parent470fc2fd021403e350e655e56742aae59fd6b6a1 (diff)
downloadvyos-1x-c9390e9f1522cf5208dcdce59f2913639ab7fd6d.tar.gz
vyos-1x-c9390e9f1522cf5208dcdce59f2913639ab7fd6d.zip
Revert "syslog: T1845: syslog host no longer accepts a port"
This reverts commit a93a1dbd7d18ff82246b4f7fb9a3757c14e6a9c7.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/syslog.py (renamed from src/conf_mode/system-syslog.py)25
1 files changed, 12 insertions, 13 deletions
diff --git a/src/conf_mode/system-syslog.py b/src/conf_mode/syslog.py
index f238acc15..c4f3d2c9c 100755
--- a/src/conf_mode/system-syslog.py
+++ b/src/conf_mode/syslog.py
@@ -53,9 +53,9 @@ $outchannel {{file}},{{files[file]['log-file']}},{{files[file]['max-size']}},{{f
## remote logging
{% for host in hosts %}
{% if hosts[host]['proto'] == 'tcp' %}
-{{hosts[host]['selectors']}} @@{{host}}:{{hosts[host]['port']}}
+{{hosts[host]['selectors']}} @@{{host}}
{% else %}
-{{hosts[host]['selectors']}} @{{host}}:{{hosts[host]['port']}}
+{{hosts[host]['selectors']}} @{{host}}
{% endif %}
{% endfor %}
{% endif %}
@@ -177,22 +177,19 @@ def get_config():
# set system syslog host
if c.exists('host'):
- rhosts = c.list_nodes(['host'])
+ proto = 'udp'
+ rhosts = c.list_nodes('host')
for rhost in rhosts:
- if c.exists('host ' + rhost + ' port'):
- port = c.return_value(['host', rhost, 'port'])
- else:
- port = '514'
- if c.exists('host ' + rhost + ' protocol'):
- proto = c.return_value(['host', rhost, 'protocol'])
- else:
- proto = 'udp'
+ for fac in c.list_nodes('host ' + rhost + ' facility'):
+ if c.exists('host ' + rhost + ' facility ' + fac + ' protocol'):
+ proto = c.return_value(
+ 'host ' + rhost + ' facility ' + fac + ' protocol')
+
config_data['hosts'].update(
{
rhost: {
'selectors': generate_selectors(c, 'host ' + rhost + ' facility'),
- 'proto': proto,
- 'port' : port
+ 'proto': proto
}
}
)
@@ -292,6 +289,7 @@ def verify(c):
for s in c[conf][item]['selectors'].split(";"):
f = re.sub("\..*$", "", s)
if f not in fac:
+ print (c[conf])
raise ConfigError(
'Invalid facility ' + s + ' set in ' + conf + ' ' + item)
l = re.sub("^.+\.", "", s)
@@ -299,6 +297,7 @@ def verify(c):
raise ConfigError(
'Invalid logging level ' + s + ' set in ' + conf + ' ' + item)
+
def apply(c):
if not c and os.path.exists('/var/run/rsyslogd.pid'):
os.system("sudo systemctl stop syslog.socket")