diff options
author | Christian Breunig <christian@breunig.cc> | 2025-02-05 20:23:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-05 20:23:44 +0100 |
commit | c40ff64dfcdbd9c597b686952769df9c106967cd (patch) | |
tree | af10da96ef3dcc44149c9bdb9ab20ea1df7bbe24 /python | |
parent | c1cd7b4a7665f29ffcbe22d8450abaa759932242 (diff) | |
parent | cf7721f7d5345e484e0c57b643913d2353dca6f5 (diff) | |
download | vyos-1x-c40ff64dfcdbd9c597b686952769df9c106967cd.tar.gz vyos-1x-c40ff64dfcdbd9c597b686952769df9c106967cd.zip |
Merge pull request #4305 from c-po/syslog-T6989
syslog: T6989: convert old configuration format to "advanced"
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/defaults.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index 9757a34df..89e51707b 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -1,4 +1,4 @@ -# Copyright 2018-2024 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2018-2025 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -40,6 +40,11 @@ directories = { 'ca_certificates' : '/usr/local/share/ca-certificates/vyos' } +systemd_services = { + 'rsyslog' : 'rsyslog.service', + 'snmpd' : 'snmpd.service', +} + config_status = '/tmp/vyos-config-status' api_config_state = '/run/http-api-state' frr_debug_enable = '/tmp/vyos.frr.debug' |