20 lines
404 B
SYSTEMD
20 lines
404 B
SYSTEMD
[Unit]
|
|
Description=send PostgreSQL data, sync json data by socket
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
User=linaro
|
|
Group=sudo
|
|
ExecStart=/usr/bin/python3 /home/linaro/send_data/send_pg_data.py --debug
|
|
Restart=always
|
|
RestartSec=3
|
|
StartLimitAction=reboot
|
|
StartLimitInterval=0
|
|
StartLimitBurst=5
|
|
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |