8 lines
130 B
Bash
8 lines
130 B
Bash
#!/bin/sh
|
|
|
|
# Create and install crontab file
|
|
echo "$CRON_INTERVAL /backup.sh" >> /backup.cron
|
|
|
|
crontab /backup.cron
|
|
|
|
crond -f -d 8 |