Skip to content

Commit f59cab9

Browse files
authored
Merge pull request #305 from lamw/issue-304
Updated to support 8.0 Update 2
2 parents 23daa4f + 7e01b60 commit f59cab9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ghettoVCB-restore.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
###### DO NOT EDIT PASS THIS LINE ######
88

9-
LAST_MODIFIED_DATE=2023_04_21
9+
LAST_MODIFIED_DATE=2023_09_29
1010
VERSION=1
1111
VERSION_STRING=${LAST_MODIFIED_DATE}_${VERSION}
1212

1313
printUsage() {
1414
echo "###############################################################################"
1515
echo "#"
16-
echo "# ghettoVCB-restore for ESX/ESXi 3.5, 4.x, 5.x, 6.x & 7.x"
16+
echo "# ghettoVCB-restore for ESX/ESXi 3.5, 4.x, 5.x, 6.x, 7.x & 8.x"
1717
echo "# Author: William Lam"
1818
echo "# http://www.virtuallyghetto.com/"
1919
echo "# Documentation: http://communities.vmware.com/docs/DOC-8760"
@@ -94,7 +94,7 @@ sanityCheck() {
9494
ESX_VERSION=$(vmware -v | awk '{print $3}')
9595

9696
case "${ESX_VERSION}" in
97-
8.0.0|8.0.1) VER=8; break;;
97+
8.0.0|8.0.1|8.0.2) VER=8; break;;
9898
7.0.0|7.0.1|7.0.2|7.0.3) VER=7; break;;
9999
6.0.0|6.5.0|6.7.0) VER=6; break;;
100100
5.0.0|5.1.0|5.5.0) VER=5; break;;

ghettoVCB.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# User Definable Parameters
1010
##################################################################
1111

12-
LAST_MODIFIED_DATE=2023_04_21
12+
LAST_MODIFIED_DATE=2023_09_29
1313
VERSION=1
1414

1515
# directory that all VM backups should go (e.g. /vmfs/volumes/SAN_LUN1/mybackupdir)
@@ -177,7 +177,7 @@ VM_BACKUP_DIR_NAMING_CONVENTION="$(date +%F_%H-%M-%S)"
177177
printUsage() {
178178
echo "###############################################################################"
179179
echo "#"
180-
echo "# ghettoVCB for ESX/ESXi 3.5, 4.x, 5.x, 6.x & 7.x"
180+
echo "# ghettoVCB for ESX/ESXi 3.5, 4.x, 5.x, 6.x, 7.x & 8.x"
181181
echo "# Author: William Lam"
182182
echo "# http://www.virtuallyghetto.com/"
183183
echo "# Documentation: http://communities.vmware.com/docs/DOC-8760"
@@ -309,7 +309,7 @@ sanityCheck() {
309309
ESX_RELEASE=$(uname -r)
310310

311311
case "${ESX_VERSION}" in
312-
8.0.0|8.0.1) VER=8; break;;
312+
8.0.0|8.0.1|8.0.2) VER=8; break;;
313313
7.0.0|7.0.1|7.0.2|7.0.3) VER=7; break;;
314314
6.0.0|6.5.0|6.7.0) VER=6; break;;
315315
5.0.0|5.1.0|5.5.0) VER=5; break;;

0 commit comments

Comments
 (0)