From f9c40053d3d90efc61a3675846d331a90e992e99 Mon Sep 17 00:00:00 2001 From: Eric Gumtow Date: Thu, 12 Feb 2026 11:45:37 -0800 Subject: [PATCH] tell systemd to output run_bootfile service to console and journald --- custom_files/run_bootfile_dev.service | 3 +++ custom_files/run_bootfile_prod.service | 3 +++ 2 files changed, 6 insertions(+) diff --git a/custom_files/run_bootfile_dev.service b/custom_files/run_bootfile_dev.service index de64528..4ff80af 100644 --- a/custom_files/run_bootfile_dev.service +++ b/custom_files/run_bootfile_dev.service @@ -5,6 +5,9 @@ After=network-online.target [Service] Type=simple ExecStart = /root/scripts/run_bootfile_dev.sh +StandardOutput=journal+console +StandardError=inherit +TTYPath=/dev/tty1 [Install] WantedBy = default.target diff --git a/custom_files/run_bootfile_prod.service b/custom_files/run_bootfile_prod.service index 5115934..5723ebc 100644 --- a/custom_files/run_bootfile_prod.service +++ b/custom_files/run_bootfile_prod.service @@ -5,6 +5,9 @@ After=network-online.target [Service] Type=simple ExecStart = /root/scripts/run_bootfile_prod.sh +StandardOutput=journal+console +StandardError=inherit +TTYPath=/dev/tty1 [Install] WantedBy = default.target