17 lines
323 B
Desktop File
17 lines
323 B
Desktop File
# /etc/systemd/system/runner.service
|
|
[Unit]
|
|
Description=Zilant Bot Runner - Executes scheduled scripts
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
User=root
|
|
WorkingDirectory=/opt/testbot-git
|
|
ExecStart=/bin/bash /opt/testbot-git/runner.sh
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|