make install script more modular

This commit is contained in:
j 2017-03-16 16:26:39 +01:00
parent 12a5c73720
commit b5e06e2da2
1 changed files with 40 additions and 16 deletions

View File

@ -1,5 +1,10 @@
#!/bin/bash #!/bin/bash
PANDORA=${PANDORA-pandora} PANDORA=${PANDORA-pandora}
POSTGRES=${POSTGRES-local}
RABBITMQ=${RABBITMQ-local}
NGINX=${NGINX-local}
echo Installing pandora with user: $PANDORA echo Installing pandora with user: $PANDORA
getent passwd $PANDORA > /dev/null 2>&1 || adduser --disabled-password --gecos "" $PANDORA getent passwd $PANDORA > /dev/null 2>&1 || adduser --disabled-password --gecos "" $PANDORA
@ -13,7 +18,7 @@ else
SYSTEMD="no" SYSTEMD="no"
fi fi
if [ -z "$UBUNTU_CODENAME" ]; then if [ -z "$UBUNTU_CODENAME" ]; then
UBUNTU_CODENAME=trusty UBUNTU_CODENAME=xenial
fi fi
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
echo "deb http://ppa.launchpad.net/j/pandora/ubuntu ${UBUNTU_CODENAME} main" > /etc/apt/sources.list.d/j-pandora.list echo "deb http://ppa.launchpad.net/j/pandora/ubuntu ${UBUNTU_CODENAME} main" > /etc/apt/sources.list.d/j-pandora.list
@ -41,6 +46,16 @@ apt-get install -y \
acpid \ acpid \
ntp ntp
fi fi
EXTRA=""
if [ "$POSTGRES" == "local" ]; then
EXTRA="$EXTRA postgresql postgresql-contrib"
fi
if [ "$RABBITMQ" == "local" ]; then
EXTRA="$EXTRA rabbitmq-server"
fi
if [ "$NGINX" == "local" ]; then
EXTRA="$EXTRA nginx"
fi
apt-get install -y \ apt-get install -y \
sudo \ sudo \
@ -48,8 +63,6 @@ apt-get install -y \
vim \ vim \
wget \ wget \
pwgen \ pwgen \
nginx \
rabbitmq-server \
git \ git \
python3-setuptools \ python3-setuptools \
python3-pip \ python3-pip \
@ -73,18 +86,24 @@ apt-get install -y \
youtube-dl \ youtube-dl \
ipython3 \ ipython3 \
postfix \ postfix \
postgresql \ postgresql-client $EXTRA
postgresql-contrib
sudo -u postgres createuser -S -D -R $PANDORA if [ "$POSTGRES" == "local" ]; then
sudo -u postgres createdb -T template0 --locale=C --encoding=UTF8 -O $PANDORA pandora sudo -u postgres createuser -S -D -R $PANDORA
echo "CREATE EXTENSION pg_trgm;" | sudo -u postgres psql pandora sudo -u postgres createdb -T template0 --locale=C --encoding=UTF8 -O $PANDORA pandora
echo "CREATE EXTENSION pg_trgm;" | sudo -u postgres psql pandora
fi
#rabbitmq #rabbitmq
RABBITPWD=$(pwgen -n 16 -1) if [ "$RABBITMQ" == "local" ]; then
rabbitmqctl add_user pandora $RABBITPWD RABBITPWD=$(pwgen -n 16 -1)
rabbitmqctl add_vhost /pandora rabbitmqctl add_user pandora $RABBITPWD
rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*" rabbitmqctl add_vhost /pandora
rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*"
BROKER_URL="amqp://pandora:$RABBITPWD@localhost:5672//pandora"
else
BROKER_URL="$RABBITMQ"
fi
#pandora #pandora
git clone https://git.0x2620.org/pandora.git /srv/pandora git clone https://git.0x2620.org/pandora.git /srv/pandora
@ -106,7 +125,7 @@ DATABASES = {
'PASSWORD': '', 'PASSWORD': '',
} }
} }
BROKER_URL = 'amqp://pandora:$RABBITPWD@localhost:5672//pandora' BROKER_URL = '$BROKER_URL'
XACCELREDIRECT = True XACCELREDIRECT = True
DEBUG = False DEBUG = False
@ -128,10 +147,12 @@ echo "UPDATE django_site SET domain = '$HOST.local', name = '$HOST.local' WHERE
/srv/pandora/ctl install /srv/pandora/ctl install
if [ "$PANDORA" != "pandora" ]; then if [ "$PANDORA" != "pandora" ]; then
sed -i \ sed -i \
-e "s/USER=pandora/USER=$PANDORA/g" \ -e "s/User=pandora/User=$PANDORA/g" \
-e "s/Group=pandora/Group=$PANDORA/g" \
-e "s/home\/pandora/home\/$PANDORA/g" \ -e "s/home\/pandora/home\/$PANDORA/g" \
/etc/systemd/system/pandora*.service /etc/systemd/system/pandora*.service
sed -i "s/pandora pandora/$PANDORA $PANDORA/g" sed -i "s/pandora pandora/$PANDORA $PANDORA/g" /etc/tmpfiles.d/pandora.conf
systemctl daemon-reload
fi fi
if [ "$LXC" == "yes" ]; then if [ "$LXC" == "yes" ]; then
@ -144,8 +165,9 @@ fi
#cp "/srv/pandora/etc/logrotate.d/pandora" "/etc/logrotate.d/pandora" #cp "/srv/pandora/etc/logrotate.d/pandora" "/etc/logrotate.d/pandora"
#nginx #nginx
cp "/srv/pandora/etc/nginx/pandora" "/etc/nginx/sites-available/default" if [ "$NGINX" == "local" ]; then
cp "/srv/pandora/etc/nginx/pandora" "/etc/nginx/sites-available/default"
read -r -d '' GZIP <<EOI read -r -d '' GZIP <<EOI
gzip_static on;\\ gzip_static on;\\
\tgzip_http_version 1.1;\\ \tgzip_http_version 1.1;\\
@ -161,6 +183,8 @@ sed -i -e "s#gzip_disable \"msie6\";#${GZIP}#g" /etc/nginx/nginx.conf
service nginx restart service nginx restart
fi
if [ "$LXC" == "yes" ]; then if [ "$LXC" == "yes" ]; then
test -e /etc/init/avahi-daemon.conf && sed -i "s/-D/--no-rlimits -D/g" /etc/init/avahi-daemon.conf test -e /etc/init/avahi-daemon.conf && sed -i "s/-D/--no-rlimits -D/g" /etc/init/avahi-daemon.conf
fi fi