Files
storage_fresco/start_generatemails.sh
2019-05-24 11:10:22 +00:00

9 lines
225 B
Bash
Executable File

#! /bin/bash
while true; do
echo "Starting LVR Mails in `pwd` at `date`" >> /var/log/lvr/startstop.log
python ./generatemails.py
echo "LVR Mails stopped in `pwd` at `date`" >> /var/log/lvr/startstop.log
sleep 5
done