14 lines
426 B
Desktop File
14 lines
426 B
Desktop File
# VPS Agent 服务(oneshot,由 timer 触发)
|
|
# 部署位置:/etc/systemd/system/vps-agent.service
|
|
# 需先部署 collector.py + reporter.py 到 /opt/vps-agent/,并配置 /etc/vps-agent.env
|
|
|
|
[Unit]
|
|
Description=VPS Manager Agent (collect & report)
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
EnvironmentFile=-/etc/vps-agent.env
|
|
ExecStart=/usr/bin/python3 /opt/vps-agent/reporter.py
|