summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorApachez <apachez@gmail.com>2023-08-04 12:28:20 +0200
committerApachez <apachez@gmail.com>2023-08-04 12:28:20 +0200
commit5a987d4a484bf4efac98be0e4d8faad269ad764b (patch)
treef55ff556e1e330cf903f83f5c45bc32848c7f56a /src
parent8f161eaae78769e5a1d573e43f00a0f439aadc28 (diff)
downloadvyos-1x-5a987d4a484bf4efac98be0e4d8faad269ad764b.tar.gz
vyos-1x-5a987d4a484bf4efac98be0e4d8faad269ad764b.zip
T5436: Add missing preconfig-script
Diffstat (limited to 'src')
-rw-r--r--src/op_mode/show_techsupport_report.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/op_mode/show_techsupport_report.py b/src/op_mode/show_techsupport_report.py
index d27221e54..53144fd52 100644
--- a/src/op_mode/show_techsupport_report.py
+++ b/src/op_mode/show_techsupport_report.py
@@ -91,7 +91,8 @@ def show_package_repository_config() -> None:
def show_user_startup_scripts() -> None:
"""Prints the user startup scripts."""
- execute_command('cat /config/scripts/vyos-postconfig-bootup.script', 'User Startup Scripts')
+ execute_command('cat /config/scripts/vyos-preconfig-bootup.script', 'User Startup Scripts (Preconfig)')
+ execute_command('cat /config/scripts/vyos-postconfig-bootup.script', 'User Startup Scripts (Postconfig)')
def show_frr_config() -> None: