Files
aitbc/systemd/aitbc-load-secrets.service
aitbc e24513b576
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m16s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Failing after 3s
Systemd Sync / sync-systemd (push) Successful in 19s
Migrate from legacy .env to blockchain.env
- Update all systemd units to use blockchain.env instead of .env
- This standardizes configuration structure across nodes
2026-05-09 19:34:14 +02:00

21 lines
472 B
Desktop File

[Unit]
Description=AITBC Load Secrets Service
After=network.target
[Service]
Type=oneshot
User=root
Group=root
WorkingDirectory=/opt/aitbc
Environment=PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin
EnvironmentFile=/etc/aitbc/blockchain.env
EnvironmentFile=/etc/aitbc/node.env
ExecStart=/opt/aitbc/scripts/utils/load-keystore-secrets.sh
StandardOutput=journal
StandardError=journal
SyslogIdentifier=aitbc-load-secrets
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target