This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# | |
# Create bootable USB installer for vSphere ESXi on macOS | |
# 1) Boot using the resulting installer | |
# 2) Install ESXi to a second high-speed USB 3.0 device | |
# 3) Make a copy of the installed USB ESXi for emergencies | |
# | |
# https://github.com/cbednarski/vmware-usb-osx | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
# | |
# Delete a VPC and its dependencies | |
if [ -z "$1" ] then | |
echo "usage: $0 <vpcid>" | |
exit 64 | |
fi | |
vpcid="$1" |