diff options
author | Christian Breunig <christian@breunig.cc> | 2025-04-13 08:01:29 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2025-04-13 08:01:29 +0200 |
commit | ddca20df57008bd85b1363e089152e0ebf014f73 (patch) | |
tree | 1c3342d74e570eeb0e816967655b520bee12b051 /src | |
parent | d1e8dbd33ad84999ea4feea075d723068628ab1d (diff) | |
download | vyos-1x-ddca20df57008bd85b1363e089152e0ebf014f73.tar.gz vyos-1x-ddca20df57008bd85b1363e089152e0ebf014f73.zip |
vyos-router: T7356: unset ANSI bold control character during boot
With the Debian Upgrade from buster to bookworm during the 1.3 -> 1.4 cycle we
inherited a non nice looking ANSI bold setting on the terminal. The ANSI
bold control character is reset "\033[0m" in this commit.
Diffstat (limited to 'src')
-rwxr-xr-x | src/init/vyos-router | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/vyos-router b/src/init/vyos-router index ab3cc42cb..565b778e6 100755 --- a/src/init/vyos-router +++ b/src/init/vyos-router @@ -417,6 +417,7 @@ gen_duid () start () { + echo -e "Initializing VyOS router\033[0m" # reset and clean config files security_reset || log_failure_msg "security reset failed" @@ -517,7 +518,6 @@ start () cleanup_post_commit_hooks - log_daemon_msg "Starting VyOS router" disabled migrate || migrate_bootfile restore_if_missing_preconfig_script |