Download RHEL8 repository for crontab jobs

Posted on 2025-09-01 09:21  k98091518  阅读(6)  评论(0)    收藏  举报

crontab -e

----------

# Cron jobs
# RHEL8 repository downloader every three month 1st 1:00am .
#
0 1 1 1,4,7,10 * /root/All-OS-Patch-Downloaders-linux-244/1.1_RHEL8.sh
#
0 1 1 2,5,8,11 * /root/All-OS-Patch-Downloaders-linux-244/1.2_RHEL8.sh
#
0 1 1 3,6,9,12 * /root/All-OS-Patch-Downloaders-linux-244/1.3_RHEL8.sh

----------

path: \root\All-OS-Patch-Downloaders-linux-244\

cat readme

./redhat_downloader.sh -configFile 1.4.7.10_RHEL8.xml
./redhat_downloader.sh -configFile 2.5.8.11_RHEL8.xml
./redhat_downloader.sh -configFile 3.6.9.12_RHEL8.xml

----------

cat 1.1_RHEL8.sh

#!/bin/bash
cd /root/All-OS-Patch-Downloaders-linux-244
line=$(sed -n '1p' /root/All-OS-Patch-Downloaders-linux-244/readme) && $line

----------