Inital commit

This commit is contained in:
2022-06-27 19:20:21 +02:00
commit 5b80ab75d9
23 changed files with 565 additions and 0 deletions

14
Installer-Rocky8.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/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/Rocky/8"
[ -d "$TargetDir" ] || mkdir -p $TargetDir
wget http://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/images/pxeboot/initrd.img -O $TargetDir/initrd.img
wget http://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/images/pxeboot/vmlinuz -O $TargetDir/vmlinuz