diff options
author | Christian Breunig <christian@breunig.cc> | 2025-02-02 21:39:45 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2025-02-04 18:09:39 +0100 |
commit | 29a7edaf871cbf77092308eab05cb750a9e74308 (patch) | |
tree | 98450fbdd4f384d60b0988a3fbbf9ffc56c67883 | |
parent | a8db4a59d917572040bcc9cc4c0070c7816a064f (diff) | |
download | vyos-1x-29a7edaf871cbf77092308eab05cb750a9e74308.tar.gz vyos-1x-29a7edaf871cbf77092308eab05cb750a9e74308.zip |
init: T6989: start syslog early
-rwxr-xr-x | src/init/vyos-router | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init/vyos-router b/src/init/vyos-router index 00136309b..ab3cc42cb 100755 --- a/src/init/vyos-router +++ b/src/init/vyos-router @@ -461,6 +461,7 @@ start () # As VyOS does not execute commands that are not present in the CLI we call # the script by hand to have a single source for the login banner and MOTD + ${vyos_conf_scripts_dir}/system_syslog.py || log_failure_msg "could not reset syslog" ${vyos_conf_scripts_dir}/system_console.py || log_failure_msg "could not reset serial console" ${vyos_conf_scripts_dir}/system_login_banner.py || log_failure_msg "could not reset motd and issue files" ${vyos_conf_scripts_dir}/system_option.py || log_failure_msg "could not reset system option files" |