This file contains 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 | |
# Example install script for monolithic/all-in-one PE Master in the 2016 or 2017 or 2018 series | |
# This version for Enterprise Linux (CentOS, RHEL, etc). | |
# This script assumes that networking, hostname, DNS, etc are all working. | |
if [ $# -ne 2 ]; then | |
echo "Wrong number of arguments. Expected 2 and got $#" | |
echo "Usage: $0 [<PE Version>|latest] <PE GUI admin password>" | |
exit 3 | |
fi |