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 | |
# Let's install jq to help with json parsing | |
if [ "${OS}" == "rhel" ]; then | |
sudo yum install epel-release -y | |
sudo yum install jq -y | |
else | |
sudo apt-get -qq install jq -y | |
fi |