Compare commits
No commits in common. "0dc800bbf304bf720e70d15da6c3feda934c2725" and "361c9759fa321ddc17d74404de9e304e6db71216" have entirely different histories.
0dc800bbf3
...
361c9759fa
@ -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,6 +9,8 @@ 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"
|
||||
@ -30,9 +32,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 "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
|
||||
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
|
||||
crontab /tmp/current_crontab
|
||||
rm /tmp/current_crontab
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user