#!/usr/bin/env bash while [[ "$1" =~ ^- && ! "$1" == "--" ]]; do case $1 in --dev) APP_ENV="development" ;; --full) UPDATE_REVISION=0 ;; esac shift done if [[ "$1" == '--' ]]; then shift; fi . /etc/lsb-release if [[ $DISTRIB_ID != "Ubuntu" ]]; then echo "Ansible installation is only supported on Ubuntu distributions." exit 0 fi sudo apt-get update sudo apt-get install -q -y software-properties-common if [[ $DISTRIB_CODENAME == "focal" ]]; then sudo apt-get install -q -y ansible python3-pip python3-mysqldb else sudo add-apt-repository -y ppa:ansible/ansible sudo apt-get update sudo apt-get install -q -y python2.7 python-pip python-mysqldb ansible fi APP_ENV="${APP_ENV:-production}" UPDATE_REVISION="${UPDATE_REVISION:-94}" echo "Updating AzuraCast (Environment: $APP_ENV, Update revision: $UPDATE_REVISION)" if [[ ${APP_ENV} == "production" ]]; then if [[ -d ".git" ]]; then git config --global --add safe.directory /var/azuracast/www git reset --hard git pull else echo "You are running a downloaded release build. Any code updates should be applied manually." fi fi ansible-playbook util/ansible/update.yml --inventory=util/ansible/hosts --extra-vars "app_env=$APP_ENV update_revision=$UPDATE_REVISION"