Files
LDS-ImageDownloader/Installer-Alma9.sh
2022-06-27 19:20:21 +02:00

15 lines
493 B
Bash

#!/bin/bash
#Check if config is in current directory
if [[ ! -f Locations.conf ]];then
echo "Location config not found, Please got to the Project directory"
exit 10
fi
source Locations.conf
TargetDir="$WWWStore/Installer/Alma/9"
[ -d "$TargetDir" ] || mkdir -p $TargetDir
wget http://repo.almalinux.org/almalinux/9/BaseOS/x86_64/os/images/pxeboot/initrd.img -O $TargetDir/initrd.img
wget http://repo.almalinux.org/almalinux/9/BaseOS/x86_64/os/images/pxeboot/vmlinuz -O $TargetDir/vmlinuz