12 lines
182 B
Bash
12 lines
182 B
Bash
#!/bin/sh
|
|
|
|
# Import GPG public keys
|
|
gpg --import /keys/*
|
|
|
|
# Create and install crontab file
|
|
echo "$CRON_INTERVAL /backup.sh" >> /backup.cron
|
|
|
|
crontab /backup.cron
|
|
|
|
tail -f /dev/null
|