Added supervisor install command to install script

This commit is contained in:
Felipe Martín 2013-05-23 12:12:24 +02:00
parent 3d9b207f67
commit 6016bb571c
1 changed files with 3 additions and 6 deletions

View File

@ -4,11 +4,9 @@ echo "=> Updating system"
pacman -Syu --noconfirm
echo "=> Installing python"
# Install python
pacman -S python2 python2-pip python2-virtualenv --noconfirm
echo "=> Installing Postgresql"
# Install postgresql
pacman -S postgresql --noconfirm
systemd-tmpfiles --create postgresql.conf
mkdir /var/lib/postgres/data
@ -18,24 +16,23 @@ systemctl start postgresql
systemctl enable postgresql
echo "=> Installing nginx"
# Install nginx
pacman -S nginx --noconfirm
systemctl start nginx
systemctl enable nginx
echo "=> Installing git"
# Install git
pacman -S git --noconfirm
echo "=> Installing supervisor"
pacman -S supervisor --noconfirm
echo "=> Installing nodejs and dependencies"
# Install node & dependencies
pacman -S nodejs --noconfirm
npm install -g coffee-script
npm install -g uglify-js
npm install -g less
echo "=> Creating user APP with its requirements"
# Create site user
useradd app
mkdir /home/app
chown app:app /home/app