From 0d9245d448a163dd5504e635b08ab2da05d97912 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 4 Jan 2025 18:49:37 -0800 Subject: [PATCH] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 77ff0c1..c37394a 100755 --- a/install.sh +++ b/install.sh @@ -299,8 +299,8 @@ else sudo systemctl enable $service.service sudo systemctl start $service.service printf "Reference following commands:\n\n" "$service" > install_notes.txt - printf "sudo systemctl status %s.service\n\n" "$service" > install_notes.txt - printf "To see logs and stop the service:\n" + printf "sudo systemctl status %s.service\n\n" "$service" >> install_notes.txt + printf "To see logs and stop the service:\n" >> install_notes.txt printf "sudo journalctl -u %s.service\n" "$service" >> install_notes.txt printf "sudo systemctl stop %s.service\n" "$service" >> install_notes.txt printf "sudo systemctl disable %s.service\n" "$service" >> install_notes.txt