Compare commits
2 Commits
361c9759fa
...
0dc800bbf3
Author | SHA1 | Date | |
---|---|---|---|
0dc800bbf3 | |||
61025d0994 |
@ -24,7 +24,7 @@ DEST="${DEST_DIR}/GeoLite2-City-${DATE//-/}.mmdb"
|
||||
check_if_file_is_already_downloaded() {
|
||||
if [ -e "$DEST" ]; then
|
||||
echo "File is already on the local filesystem"
|
||||
ensure_symlink_exists
|
||||
# ensure_symlink_exists
|
||||
exit 0
|
||||
fi
|
||||
}
|
||||
|
8
setup.sh
8
setup.sh
@ -9,8 +9,6 @@ SCRIPT_PATH="/usr/local/bin/$SCRIPT_NAME"
|
||||
GROUP_NAME="geoipusers"
|
||||
LOG_DIR="/var/log"
|
||||
LOG_FILE="$LOG_DIR/geoip_update.log"
|
||||
CRON_SCHEDULE="0 2 * * *"
|
||||
CRON_CMD="$SCRIPT_PATH >> $LOG_FILE 2>&1"
|
||||
|
||||
# Step 1: Ensure the destination directory exists
|
||||
sudo mkdir -p "$DEST_DIR"
|
||||
@ -32,9 +30,9 @@ sudo chmod +x "$SCRIPT_PATH"
|
||||
# Step 5: Remove existing crontab entries for geoip_updater.sh, then add new
|
||||
# entries for 2 days ago, yesterday, and today
|
||||
crontab -l | grep -v "$SCRIPT_NAME" > /tmp/current_crontab
|
||||
echo "$CRON_SCHEDULE $SCRIPT_PATH \$(date -I -d '2 days ago') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
echo "$CRON_SCHEDULE $SCRIPT_PATH \$(date -I -d 'yesterday') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
echo "$CRON_SCHEDULE $SCRIPT_PATH \$(date -I -d 'today') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
echo "00 2 * * * $SCRIPT_PATH \$(date -I -d '2 days ago') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
echo "05 2 * * * $SCRIPT_PATH \$(date -I -d 'yesterday') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
echo "10 2 * * * $SCRIPT_PATH \$(date -I -d 'today') >> $LOG_FILE 2>&1" >> /tmp/current_crontab
|
||||
crontab /tmp/current_crontab
|
||||
rm /tmp/current_crontab
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user