18 lines
432 B
SYSTEMD
18 lines
432 B
SYSTEMD
[Unit]
|
|
Description=Run Kraken Crypto Trader Bot on schedule
|
|
Requires=crypto-trader.service
|
|
|
|
[Timer]
|
|
# Runs once every hour.
|
|
OnCalendar=hourly
|
|
|
|
# If the system was off at a scheduled time, run once when it comes back up
|
|
Persistent=true
|
|
|
|
# Randomise start time by up to 60 seconds to avoid thundering-herd issues
|
|
# if you run multiple bots (safe to remove if you only have one)
|
|
RandomizedDelaySec=60
|
|
|
|
[Install]
|
|
WantedBy=timers.target
|