Created
January 11, 2014 23:22
-
-
Save josecolella/8378330 to your computer and use it in GitHub Desktop.
automateRPM
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 | |
# Author: Jose Miguel Colella | |
# Description: Script creado para automatizar el proceso | |
# de instalar todo | |
cd ../ | |
sudo yum update | |
sudo yum groupinstall -y "Development tools" | |
# Instalar web.py | |
sudo easy_install web.py | |
#Instalar lenguaje de templating | |
sudo easy_install mako | |
#Instalar driver para mongodb-server | |
sudo easy_install pymongo | |
#Instalar interfaz de twitter | |
sudo easy_install tweepy | |
# Instalar el feedparser | |
sudo easy_install feedparser | |
git clone https://github.com/josecolella/DAI_Practica4.git | |
cd DAI_Practica4 | |
chmod +x index.py | |
# Para que el script siga ejecutando despues de que salga de ssh | |
sudo nohup ./index.py 80 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment