Created
October 5, 2015 22:53
-
-
Save alexfornuto/b61eb6301bfa5d4c6543 to your computer and use it in GitHub Desktop.
Bash-Setup script for CentOS 7
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 | |
echo -e "updating the timezone... \n" | |
sudo cp /usr/share/zoneinfo/America/New_York /etc/localtime | |
sleep 1 | |
echo -e "Updating, upgrading, installing packages... \n" | |
yum update | |
yum install -y git ruby rake | |
sleep 1 | |
echo -e "Configuring git variables... \n" | |
git config --global color.ui auto | |
git config --global user.name alexfornuto | |
git config --global user.email [email protected] | |
sleep 1 | |
echo -e "cloning bash-setup... \n" | |
git clone https://github.com/alexfornuto/bash-setup.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment