From d07d8f1054a911b0f86367f4fbc49f6eb5281792 Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 5 Mar 2026 15:35:30 -0500 Subject: [PATCH] fix: add informational messages for systemd service creation and management in localagi-install.sh --- install/localagi-install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/localagi-install.sh b/install/localagi-install.sh index f0dc6eb48..e91fbbd41 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -49,6 +49,7 @@ cd /opt/localagi $STD go build -o /usr/local/bin/localagi msg_ok "Built LocalAGI from source successfully" +msg_info "Creating LocalAGI systemd service" cat <<'EOF' >/etc/systemd/system/localagi.service [Unit] Description=LocalAGI @@ -66,8 +67,11 @@ Restart=on-failure [Install] WantedBy=multi-user.target EOF +msg_ok "Created LocalAGI systemd service" +msg_info "Enabling and Starting LocalAGI service" systemctl enable -q --now localagi +msg_ok "Enabled and Started LocalAGI service" motd_ssh customize