diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-03-31 15:25:14 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-04-09 20:54:06 +0200 |
| commit | d2ad852ab4393862e9f27b2bc3bd7d382feb4c5a (patch) | |
| tree | e07f1f67aebb5ef19dd396a6af2a50f59d292f84 | |
| parent | 36b18269ac6447c2135a1720824630a1e4256f80 (diff) | |
| download | vyos-1x-d2ad852ab4393862e9f27b2bc3bd7d382feb4c5a.tar.gz vyos-1x-d2ad852ab4393862e9f27b2bc3bd7d382feb4c5a.zip | |
vyos-router: T8375: rename "system" to "activate"
Clearly indicate during startup what happens. When we see "system" on the CLI,
infact we ran the activation scripts, thus the rename.
| -rwxr-xr-x | src/init/vyos-router | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init/vyos-router b/src/init/vyos-router index 234f9b9b9..600892c93 100755 --- a/src/init/vyos-router +++ b/src/init/vyos-router @@ -194,10 +194,10 @@ migrate_bootfile () } # configure system-specific settings -system_config () +system_activate () { if [ -x $vyos_libexec_dir/run-config-activation.py ]; then - log_progress_msg system + log_progress_msg activate sg ${GROUP} -c "$vyos_libexec_dir/run-config-activation.py $BOOTFILE" fi } @@ -613,7 +613,7 @@ start () update_interface_config || overall_status=1 - disabled system_config || system_config || overall_status=1 + disabled system_activate || system_activate || overall_status=1 for s in ${subinit[@]} ; do if ! disabled $s; then |
