Introduced new systemd `chill-send-sms@.service` and `chill-send-sms@.timer` to schedule and execute SMS sending feature. Updated Ansible tasks to manage these units.
9 lines
297 B
Desktop File
9 lines
297 B
Desktop File
[Unit]
|
|
Description=Execute send-short-messages for chill with environment %i
|
|
|
|
[Service]
|
|
User={{ as_user }}
|
|
ExecStart=/usr/bin/docker compose --file {{ install_dir }}/%i/compose.yaml run cron bin/console chill:calendar:send-short-messages
|
|
Type=simple
|
|
# execute maximum 30 minutes
|
|
RuntimeMaxSec=1800 |