From afe2de41673a0e61641a218ff6f514017acf144c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Casaj=C3=BAs?= Date: Wed, 2 Nov 2022 18:13:24 +0100 Subject: [PATCH] Fix: Create crontab for all hosts (#1396) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix: Create crontab for all hosts * Typo Co-authored-by: Adrià Casajús --- crontab-all-hosts.yml | 7 +++++++ crontab.yml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 crontab-all-hosts.yml diff --git a/crontab-all-hosts.yml b/crontab-all-hosts.yml new file mode 100644 index 00000000..af15f7f2 --- /dev/null +++ b/crontab-all-hosts.yml @@ -0,0 +1,7 @@ +jobs: + - name: SimpleLogin send unsent emails + command: python /code/cron.py -j send_undelivered_mails + shell: /bin/bash + schedule: "*/5 * * * *" + captureStderr: true + concurrencyPolicy: Forbid diff --git a/crontab.yml b/crontab.yml index 338c1d11..ec5a257a 100644 --- a/crontab.yml +++ b/crontab.yml @@ -68,7 +68,7 @@ jobs: concurrencyPolicy: Forbid - name: SimpleLogin send unsent emails - command: python /code/cron.py -j send_undelivered_emails + command: python /code/cron.py -j send_undelivered_mails shell: /bin/bash schedule: "*/5 * * * *" captureStderr: true