From 7bbb75876aa5d80ed1665501f4027011d08dd657 Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 24 Apr 2026 12:04:37 +0200 Subject: [PATCH] fix: update agent-daemon service to run as root instead of aitbc user - Change User=aitbc to User=root in aitbc-agent-daemon.service - aitbc user no longer exists after cleanup - Consistent with other AITBC services that run as root --- systemd/aitbc-agent-daemon.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemd/aitbc-agent-daemon.service b/systemd/aitbc-agent-daemon.service index 36f8dc79..218222bc 100644 --- a/systemd/aitbc-agent-daemon.service +++ b/systemd/aitbc-agent-daemon.service @@ -6,8 +6,8 @@ Requires=aitbc-blockchain-node.service [Service] Type=simple -User=aitbc -Group=aitbc +User=root +Group=root WorkingDirectory=/opt/aitbc EnvironmentFile=/etc/aitbc/.env EnvironmentFile=/etc/aitbc/node.env