#!/usr/bin/env bash set -e usage() { cat </dev/null # root@host# apt install rabbitmq-server # root@host# dpkg-query --showformat '${Status}\n' -W rabbitmq-server 2>/dev/null # install ok installed # root@host# apt remove rabbitmq-server # root@host# dpkg-query --showformat '${Status}\n' -W rabbitmq-server 2>/dev/null # deinstall ok config-files # root@host# apt purge rabbitmq-server # root@host# dpkg-query --showformat '${Status}\n' -W rabbitmq-server 2>/dev/null # unknown ok not-installed # # (There are more possibilities in the case of dpkg errors.) Here # we are checking for either empty or not-installed. if [ -n "$TRAVIS" ] || ! dpkg-query --showformat '${Status}\n' -W rabbitmq-server 2>/dev/null | grep -vq ' not-installed$'; then echo -e "\n[rabbitmq]\nnodename = zulip@localhost" fi if [ -n "$USE_CERTBOT" ]; then echo -e "\n[certbot]\nauto_renew = yes" fi ) > /etc/zulip/zulip.conf "$ZULIP_PATH"/scripts/zulip-puppet-apply -f # Detect which features were selected for the below set +e [ -e "/etc/init.d/camo" ]; has_camo=$? [ -e "/etc/init.d/nginx" ]; has_nginx=$? [ -e "/etc/supervisor/conf.d/zulip.conf" ]; has_appserver=$? [ -e "/etc/cron.d/rabbitmq-numconsumers" ]; has_rabbit=$? [ -e "/etc/init.d/postgresql" ]; has_postgres=$? set -e # Docker service setup is done in the docker config, not here if [ "$DEPLOYMENT_TYPE" = "dockervoyager" ]; then has_camo=1 has_nginx=1 has_appserver=1 has_rabbit=1 has_postgres=1 fi # These server restarting bits should be moveable into puppet-land, ideally apt-get -y upgrade if [ "$has_nginx" = 0 ]; then if [ -n "$SNAKEOIL_CERT" ] && ! [ -e "/etc/ssl/private/zulip.key" ]; then apt-get install -y openssl ssl-cert ln -nsf /etc/ssl/certs/ssl-cert-snakeoil.pem /etc/ssl/certs/zulip.combined-chain.crt ln -nsf /etc/ssl/private/ssl-cert-snakeoil.key /etc/ssl/private/zulip.key fi # Check nginx was configured properly now that we've installed it. # Most common failure mode is certs not having been installed. nginx -t || ( set +x echo echo "Verifying the Zulip nginx configuration failed!" echo echo "This is almost always a problem with your SSL certificates." echo "See https://zulip.readthedocs.io/en/latest/production/ssl-certificates.html for help" echo echo "Once fixed, just rerun scripts/setup/install; it'll pick up from here!" echo exit 1 ) service nginx restart fi if [ "$has_appserver" = 0 ]; then "$ZULIP_PATH"/scripts/setup/generate_secrets.py --production cp -a "$ZULIP_PATH"/zproject/prod_settings_template.py /etc/zulip/settings.py if [ -n "$EXTERNAL_HOST" ]; then sed -i "s/^EXTERNAL_HOST =.*/EXTERNAL_HOST = '$EXTERNAL_HOST'/" /etc/zulip/settings.py fi if [ -n "ZULIP_ADMINISTRATOR" ]; then sed -i "s/^ZULIP_ADMINISTRATOR =.*/ZULIP_ADMINISTRATOR = '$ZULIP_ADMINISTRATOR'/" /etc/zulip/settings.py fi ln -nsf /etc/zulip/settings.py "$ZULIP_PATH"/zproject/prod_settings.py fi # Restart camo since generate_secrets.py likely replaced its secret key if [ "$has_camo" = 0 ]; then # Cut off stdin because a bug in the Debian packaging for camo # causes our stdin to leak to the daemon, which can cause tools # invoking the installer to hang. # TODO: fix in Debian too. service camo restart /dev/null; then set +x echo; echo "RabbitMQ seems to not have started properly after the installation process." echo "Often, this can be caused by misconfigured /etc/hosts in virtualized environments" echo "See https://github.com/zulip/zulip/issues/53#issuecomment-143805121" echo "for more information" echo set -x exit 1 fi "$ZULIP_PATH"/scripts/setup/configure-rabbitmq fi if [ "$has_postgres" = 0 ]; then "$ZULIP_PATH"/scripts/setup/postgres-init-db fi if [ "$has_appserver" = 0 ]; then deploy_path=$("$ZULIP_PATH"/scripts/lib/zulip_tools.py make_deploy_path) mv "$ZULIP_PATH" "$deploy_path" ln -nsf /home/zulip/deployments/next "$ZULIP_PATH" ln -nsf "$deploy_path" /home/zulip/deployments/next ln -nsf "$deploy_path" /home/zulip/deployments/current ln -nsf /etc/zulip/settings.py "$deploy_path"/zproject/prod_settings.py mkdir -p "$deploy_path"/prod-static/serve cp -rT "$deploy_path"/prod-static/serve /home/zulip/prod-static chown -R zulip:zulip /home/zulip /var/log/zulip /etc/zulip/settings.py if ! [ -e "/home/zulip/prod-static/generated" ]; then # If we're installing from a git checkout, we need to run # `tools/update-prod-static` in order to build the static # assets. su zulip -c "/home/zulip/deployments/current/tools/update-prod-static --authors-not-required" fi fi if [ -e "/var/run/supervisor.sock" ]; then # If supervisor isn't running, no need to chown its socket chown zulip:zulip /var/run/supervisor.sock fi set +x cat <