From 091d133e0302a36c3c82b7e6d58f41366ab5f3e5 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Wed, 26 Jan 2022 08:29:02 -0500 Subject: [PATCH] Update install_services.sh --- scripts/install_services.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install_services.sh b/scripts/install_services.sh index 515f47a..acae62a 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -384,21 +384,21 @@ ExecStart=/usr/local/bin/gotty -p 8080 --title-format "BirdNET-Pi Log" journalct WantedBy=multi-user.target EOF systemctl enable birdnet_log.service - echo "Installing the extraction_log.service" - cat << EOF > /etc/systemd/system/extraction_log.service + echo "Installing the web_terminal.service" + cat << EOF > /etc/systemd/system/web_terminal.service [Unit] -Description=BirdNET Extraction Log +Description=BirdNET-Pi Web Terminal [Service] Restart=on-failure RestartSec=3 Type=simple User=${USER} Environment=TERM=xterm-256color -ExecStart=/usr/local/bin/gotty -p 8888 --title-format "Extractions Log" journalctl -o cat -fu extraction.service +ExecStart=/usr/local/bin/gotty -w -p 8888 --title-format "BirdNET-Pi Terminal" bash [Install] WantedBy=multi-user.target EOF - systemctl enable extraction_log.service + systemctl enable web_terminal.service } install_sox() {