New version of OSX-PROXMOX (v1.1.0) - Please read CHANGELOG for details

This commit is contained in:
Gabriel 2021-11-06 21:15:00 -03:00
parent d5528d5887
commit 8d402fafbc
5 changed files with 43 additions and 3 deletions

16
CHANGELOG.md Normal file
View File

@ -0,0 +1,16 @@
OpenCore Changelog
==================
#### v1.1.0
- Including support for Proxmox VE v7 family;
- Fix for remove tmp directory;
- Including git for apt install option in install;
- Optimize procedure in 'Download & Create Recovery Image';
- Add return code for apt update/install in prereqs section and condition to exit/abort;
- Add support to install Windows 11 with TPM and Secure Boot;
- Update EFI ISO for including support to install Nvidia Web Drivers for High Sierra;
#### v1.0.0
- Initial version of OSX-Proxmox Solution

Binary file not shown.

View File

@ -22,7 +22,7 @@ Voilà, install macOS! This is really and magic **easiest way**!
* macOS Monterey - 12
## Versions of Proxmox VE Supported
* 7.0-2 ~ 7.0-11
* 7.XX
## Opencore version
* November/2021 - 0.7.5 with SIP Enabled, DMG only signed by Apple and all features of securities.

View File

@ -8,13 +8,37 @@
#
#########################################################################################################################
clear
if [ -e /root/OSX-PROXMOX ]; then rm -rf /root/OSX-PROXMOX; fi;
if [ -e /etc/apt/sources.list.d/pve-enterprise.list ]; then rm -rf /etc/apt/sources.list.d/pve-enterprise.list; fi;
echo "Waiting install OSX-PROXMOX..."
echo " "
apt update > /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log
if [ $? -ne 0 ]
then
echo " "
echo "Error with 'apt-get update' ..."
echo "Trying to change /etc/apt/sources.list"
echo " "
sed -i 's/ftp.br.debian.org/ftp.debian.org/g' /etc/apt/sources.list
echo "Retrying 'apt-get update' ..."
echo " "
apt-get update >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log
if [ $? -ne 0 ]; then echo "Error with 'apt-get update' ..."; exit; fi
fi
apt install git -y >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log
git clone https://github.com/luchina-gabriel/OSX-PROXMOX.git >> /tmp/install-osx-proxmox.log 2>> /tmp/install-osx-proxmox.log
if [ $? -ne 0 ]; then echo "Problem to clone repository from GitHub"; exit; fi;
if [ ! -e /root/OSX-PROXMOX ]; then mkdir -p /root/OSX-PROXMOX; fi;
/root/OSX-PROXMOX/setup

BIN
setup

Binary file not shown.