aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docker/entrypoint.sh
blob: 0bd3944fd1c295711716dbc5addb3b3b3c7e2e3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env bash

# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.

set -o errexit -o nounset -o pipefail

schedule="${SCHEDULE:-once}"

case "$schedule" in
    once)
        . /tmp/venv/bin/activate
        exec "$@"
        ;;
    15min)   schedule='*/15 * * * *' ;;
    hourly)  schedule='0 * * * *'    ;;
    daily)   schedule='0 0 * * *'    ;;
    weekly)  schedule='0 0 * * 1'    ;;
    monthly) schedule='0 0 1 * *'    ;;
    *) ;;
esac

script="#!/bin/bash
cd /usr/src && . /tmp/venv/bin/activate &&$( printf -- ' %q' "$@" )"

echo "$script" > /task.sh
chmod +x /task.sh

crontab="$schedule /task.sh
# This is the new crontab."

echo "$crontab" | crontab -

exec crond -f