From 5f3f587a191f98dc73927efa3afe1cefbfb4a3e4 Mon Sep 17 00:00:00 2001 From: aitbc Date: Wed, 15 Apr 2026 10:34:53 +0200 Subject: [PATCH] Move .agent_daemon_password to keystore directory and update references --- docs/beginner/02_project/5_done.md | 2 +- systemd/aitbc-agent-daemon.service | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/beginner/02_project/5_done.md b/docs/beginner/02_project/5_done.md index 6b87c31e..7b00c016 100644 --- a/docs/beginner/02_project/5_done.md +++ b/docs/beginner/02_project/5_done.md @@ -711,7 +711,7 @@ This document tracks components that have been successfully deployed and are ope - File: `services/agent_daemon.py` - Systemd service: `systemd/aitbc-agent-daemon.service` - Configured to listen for messages and auto-reply with configurable responses - - Password file: `.agent_daemon_password` (temp123 for temp-agent wallet) + - Password file: `/var/lib/aitbc/keystore/.agent_daemon_password` (temp123 for temp-agent wallet) - ✅ **Phase 1: Core Enhancements** - Client: retry with exponential backoff, job history/filtering, batch submit from CSV/JSON, job templates diff --git a/systemd/aitbc-agent-daemon.service b/systemd/aitbc-agent-daemon.service index de42f44d..fb4d2acc 100644 --- a/systemd/aitbc-agent-daemon.service +++ b/systemd/aitbc-agent-daemon.service @@ -15,7 +15,7 @@ Environment="PATH=/opt/aitbc/venv/bin:/usr/local/bin:/usr/bin:/bin" ExecStart=/opt/aitbc/venv/bin/python /opt/aitbc/services/agent_daemon.py \ --wallet temp-agent \ --address ait1d18e286fc0c12888aca94732b5507c8787af71a5 \ - --password-file /opt/aitbc/.agent_daemon_password \ + --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 \