Kumi
35f51e1201
Introduced a new systemd service configuration for GPTbot to ensure Pantalaimon starts as a background process on system boot, maintaining persistent Matrix encryption handling. Ensures seamless restarts and network dependency management for improved reliability.
15 lines
No EOL
289 B
Desktop File
15 lines
No EOL
289 B
Desktop File
[Unit]
|
|
Description=Pantalaimon for GPTbot
|
|
Requires=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=gptbot
|
|
Group=gptbot
|
|
WorkingDirectory=/opt/gptbot
|
|
ExecStart=/opt/gptbot/venv/bin/python3 -um pantalaimon.main -c pantalaimon.conf
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |