Files
aitbc/systemd/aitbc-agent-daemon.service
aitbc 7bbb75876a
All checks were successful
Systemd Sync / sync-systemd (push) Successful in 11s
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
2026-04-24 12:04:37 +02:00

38 lines
1.0 KiB
Desktop File

[Unit]
Description=AITBC Autonomous Agent Listener Daemon
Documentation=https://github.com/aitbc/blockchain
After=network.target aitbc-blockchain-node.service
Requires=aitbc-blockchain-node.service
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/opt/aitbc
EnvironmentFile=/etc/aitbc/.env
EnvironmentFile=/etc/aitbc/node.env
Environment="PATH=/opt/aitbc/venv/bin:/usr/local/bin:/usr/bin:/bin"
ExecStart=/opt/aitbc/venv/bin/python /opt/aitbc/apps/agent-coordinator/scripts/agent_daemon.py \
--wallet temp-agent \
--address ait1d18e286fc0c12888aca94732b5507c8787af71a5 \
--password-file /var/lib/aitbc/keystore/.agent_daemon_password \
--keystore-dir /var/lib/aitbc/keystore \
--db-path /var/lib/aitbc/data/chain.db \
--rpc-url http://localhost:8006 \
--poll-interval 2 \
--reply-message pong \
--trigger-message ping
Restart=always
RestartSec=10
StandardOutput=journal
StandardError=journal
# Security settings
NoNewPrivileges=true
PrivateTmp=true
ProtectHome=true
[Install]
WantedBy=multi-user.target