django-orchestra-test/scripts/container/deploy.sh

123 lines
3.5 KiB
Bash
Raw Normal View History

2014-05-08 16:59:35 +00:00
#!/bin/bash
# Automated development deployment of django-orchestra
# This script is safe to run several times, for example in order to upgrade your deployment
set -u
bold=$(tput bold)
normal=$(tput sgr0)
[ $(whoami) != 'root' ] && {
echo -e "\nErr. This script should run as root\n" >&2
exit 1
}
USER='orchestra'
2014-10-04 17:46:03 +00:00
PASSWORD='orchestra'
2014-05-08 16:59:35 +00:00
HOME="/home/$USER"
PROJECT_NAME='panel'
BASE_DIR="$HOME/$PROJECT_NAME"
2014-10-04 17:40:13 +00:00
surun () {
2014-05-08 16:59:35 +00:00
echo " ${bold}\$ su $USER -c \"${@}\"${normal}"
su $USER -c "${@}"
}
2014-10-04 17:40:13 +00:00
run () {
echo " ${bold}\$ ${@}${normal}"
${@}
}
2014-05-08 16:59:35 +00:00
# Create a system user for running Orchestra
useradd orchestra -s "/bin/bash"
echo "$USER:$PASSWORD" | chpasswd
mkdir $HOME
chown $USER.$USER $HOME
2014-10-04 17:40:13 +00:00
run adduser $USER sudo
2014-05-08 16:59:35 +00:00
2015-04-04 17:44:07 +00:00
CURRENT_VERSION=$(python3 -c "from orchestra import get_version; print get_version();" 2> /dev/null || false)
2014-05-08 16:59:35 +00:00
if [[ ! $CURRENT_VERSION ]]; then
# First Orchestra installation
2015-04-04 17:44:07 +00:00
run "apt-get -y install git python3-pip"
2014-10-04 17:40:13 +00:00
surun "git clone https://github.com/glic3rinu/django-orchestra.git ~/django-orchestra"
2015-04-04 17:44:07 +00:00
echo $HOME/django-orchestra/ | sudo tee /usr/local/lib/python3*/dist-packages/orchestra.pth
2014-10-04 17:40:13 +00:00
run "cp $HOME/django-orchestra/orchestra/bin/orchestra-admin /usr/local/bin/"
2014-05-08 16:59:35 +00:00
fi
2014-10-04 21:29:05 +00:00
sudo orchestra-admin install_requirements --testing
2014-10-04 13:31:11 +00:00
2014-05-08 16:59:35 +00:00
if [[ ! -e $BASE_DIR ]]; then
cd $HOME
2014-10-04 17:40:13 +00:00
surun "orchestra-admin startproject $PROJECT_NAME"
2014-05-08 16:59:35 +00:00
cd -
fi
MANAGE="$BASE_DIR/manage.py"
if [[ ! $(sudo su postgres -c "psql -lqt" | awk {'print $1'} | grep '^orchestra$') ]]; then
# orchestra database does not esists
# Speeding up tests, don't do this in production!
2014-10-04 14:19:29 +00:00
POSTGRES_VERSION=$(psql --version | head -n1 | awk {'print $3'} | sed -r "s/(^[0-9\.]*).*/\1/")
2014-10-04 17:40:13 +00:00
sed -i "s/^#fsync =\s*.*/fsync = off/" \
2014-05-08 16:59:35 +00:00
/etc/postgresql/${POSTGRES_VERSION}/main/postgresql.conf
2014-10-04 17:40:13 +00:00
sed -i "s/^#full_page_writes =\s*.*/full_page_writes = off/" \
2014-05-08 16:59:35 +00:00
/etc/postgresql/${POSTGRES_VERSION}/main/postgresql.conf
2014-10-04 17:40:13 +00:00
run "service postgresql restart"
2015-04-04 17:44:07 +00:00
run "python3 $MANAGE setuppostgres --db_name orchestra --db_user orchestra --db_password orchestra"
2014-05-08 16:59:35 +00:00
# Create database permissions are needed for running tests
sudo su postgres -c 'psql -c "ALTER USER orchestra CREATEDB;"'
fi
if [[ $CURRENT_VERSION ]]; then
# Per version upgrade specific operations
2015-04-04 17:44:07 +00:00
run "python3 $MANAGE postupgradeorchestra --no-restart --from $CURRENT_VERSION"
2014-05-08 16:59:35 +00:00
else
2015-04-04 17:44:07 +00:00
run "python3 $MANAGE syncdb --noinput"
run "python3 $MANAGE migrate --noinput"
2014-05-08 16:59:35 +00:00
fi
sudo python $MANAGE setupcelery --username $USER --processes 2
# Install and configure Nginx web server
2014-10-04 17:40:13 +00:00
surun "mkdir $BASE_DIR/static"
2015-04-04 17:44:07 +00:00
surun "python3 $MANAGE collectstatic --noinput"
run "apt-get install -y nginx uwsgi uwsgi-plugin-python3"
run "python3 $MANAGE setupnginx"
2014-10-04 17:40:13 +00:00
run "service nginx start"
2014-05-08 16:59:35 +00:00
# Apply changes
2015-04-04 17:44:07 +00:00
run "python3 $MANAGE restartservices"
2014-05-08 16:59:35 +00:00
# Create a orchestra user
2015-04-04 17:44:07 +00:00
cat <<- EOF | python3 $MANAGE shell
2014-05-08 16:59:35 +00:00
from orchestra.apps.accounts.models import Account
2014-10-04 17:46:03 +00:00
if not Account.objects.filter(username="$USER").exists():
2014-05-08 16:59:35 +00:00
print 'Creating orchestra superuser'
__ = Account.objects.create_superuser("$USER", "$USER@localhost", "$PASSWORD")
2014-05-08 16:59:35 +00:00
EOF
# Change to development settings
PRODUCTION="from orchestra.conf.production_settings import \*"
DEVEL="from orchestra.conf.devel_settings import \*"
sed -i "s/^$PRODUCTION/# $PRODUCTION/" $BASE_DIR/$PROJECT_NAME/settings.py
sed -i "s/^#\s*$DEVEL/$DEVEL/" $BASE_DIR/$PROJECT_NAME/settings.py
cat << EOF
${bold}
* Admin interface login *
- username: $USER
- password: $PASSWORD
${normal}
EOF