Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-08 | syslog: T2769: add VRF support | Christian Breunig | |
Allow syslog messages to be sent through a VRF (e.g. management). | |||
2023-05-08 | syslog: T2778: migrate to get_config_dict() | Christian Breunig | |
2023-05-05 | syslog: T2769: xml: improve completion helpers | Christian Breunig | |
2023-05-05 | syslog: T2769: xml: provide common facility building block | Christian Breunig | |
2023-05-05 | syslog: T2769: xml: provide common constraint for system usernames | Christian Breunig | |
2022-07-07 | syslog: T4500: Remove max-size from rsyslog leaving rotation to logrotate | sarthurdev | |
After discussion with @zsdc this was decided the better long term fix * Removes hourly logrotate cron in favour of systemd timer override | |||
2022-04-29 | xml: T4047: use full string match in the regex validator | Christian Poessinger | |
2021-08-17 | xml: syslog: use port-number building block | Christian Poessinger | |
2021-04-20 | xml: T3488: when using regex one must use ^ and $ when checking string literals | Christian Poessinger | |
2020-12-12 | xml: use "u32:" keyword when identifying port ranges | Christian Poessinger | |
This will render the completion help more nicely. | |||
2020-10-17 | syslog: T2938: Add format octet-counted for syslog conf-mode | sever-sever | |
2020-03-16 | syslog: T2131: improve valueHelp | Christian Poessinger | |
2020-03-16 | syslog: T2131: add generic fqdn validator | Christian Poessinger | |
2019-12-26 | xml: remove leading carrot (^) from regex syntax | Christian Poessinger | |
... as the carrot is applied automatically when reading in the XML definition. Auto replaced by: $ find interface-definitions -type f | xargs sed -i 's/regex>^/regex>/' | |||
2019-12-06 | T1843: run interface-definitions though GCC preprocessor | Christian Poessinger | |
A lot of XML code is duplicated (VLAN, interface address) for instance. Such XML definitions should be moved to feature.xml.i files and then just pulled in via GCC preprocessor #include definition in e.g. bond or ethernet definitions. This will give us the ability to single-source repeating node definitions as: * Interface Address * Interface Description * Interface Disable * VLAN (both vif-s and vif-c) The .in suffix of the interface-definitions is a marker that those files are input files to the GCC preprocessor. They will be rendered into proper XML files in the build directory. Some node definitions have been reworder to remove escaped double quote occurances which would have been warned about by the GCC preprocessor. |