Skip to content

Instantly share code, notes, and snippets.

@ccarrasc
Last active March 1, 2019 22:50
Show Gist options
  • Save ccarrasc/5813844 to your computer and use it in GitHub Desktop.
Save ccarrasc/5813844 to your computer and use it in GitHub Desktop.
Verify we are on CentOS
#!/bin/bash
OS=`cat /etc/redhat-release | awk {'print $1}'`
if [ "$OS" != "CentOS" ]; then
echo -e "\e[1;31mThis script is intended for CentOS only\e[0m" 1>&2
#exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment