mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 10:19:34 +00:00
11 lines
256 B
Bash
Executable File
11 lines
256 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
TODAY=`date '+%Y_%m_%d'`
|
|
LOGFILE=/home/labca/logs/cron-mailer.log
|
|
echo $TODAY >>$LOGFILE
|
|
|
|
cd /home/labca/boulder
|
|
docker-compose exec -T boulder bin/expiration-mailer --config labca/config/expiration-mailer.json >>$LOGFILE 2>&1
|