From 0d2c8a37ef5eebc3580ed1f543e6bca6f7dbb959 Mon Sep 17 00:00:00 2001 From: Hayyan Hajwani <129366924+Hayyan612@users.noreply.github.com> Date: Wed, 16 Sep 2026 13:54:14 +0530 Subject: [PATCH] fix(ui): point the manual systemd unit at the installed CLI path The service file offered on the site install screen hardcoded /home/owen/fossorial/cli/bin/pangolin, a developer machine path, so the unit fails to start on a normal install. get-cli.sh installs to /usr/local/bin ("Prefer /usr/local/bin for system-wide installation"), which is also where the bare `pangolin` calls in the surrounding commands resolve from. Closes #3768 --- src/components/newt-install-commands.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/newt-install-commands.tsx b/src/components/newt-install-commands.tsx index ad5c29f5e..e1c7422f6 100644 --- a/src/components/newt-install-commands.tsx +++ b/src/components/newt-install-commands.tsx @@ -150,7 +150,7 @@ Type=simple User=root Group=root EnvironmentFile=/etc/pangolin/pangolin-site.env -ExecStart=/home/owen/fossorial/cli/bin/pangolin up site +ExecStart=/usr/local/bin/pangolin up site Restart=always RestartSec=2 UMask=0077