fix(systemd): Restart=always so daemon restarts after HIBERNATION clean exit
The daemon exits with status 0 on HIBERNATION (by design, to drop RSS). Restart=on-failure only restarts on non-zero exits, so the daemon stayed dead. Change to Restart=always.
This commit is contained in:
parent
382b411133
commit
7f01b8824e
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ StartLimitBurst=3
|
|||
[Service]
|
||||
Type=simple
|
||||
ExecStart=%h/.venv/iai-mcp/bin/python -m iai_mcp.daemon
|
||||
Restart=on-failure
|
||||
Restart=always
|
||||
RestartSec=30
|
||||
|
||||
Environment="IAI_MCP_STORE=%h/.iai-mcp"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue