Initial commit.

This commit is contained in:
Pau Rodriguez-Estivill
2016-10-28 14:58:34 +02:00
commit 96c02aafe0
5 changed files with 151 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#! /bin/sh
set -e
if [ "${SCHEDULE}" = "**None**" ]; then
sh backup.sh
else
exec go-cron "$SCHEDULE" /bin/sh backup.sh
fi