diff options
-rwxr-xr-x | scripts/provision | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/scripts/provision b/scripts/provision index 2bd7dbd..c6916de 100755 --- a/scripts/provision +++ b/scripts/provision @@ -12,17 +12,22 @@ DEPENDENCIES="mkdocs apache2 python3-pip pandoc pandoc-citeproc" # PyPI dependencies DEPENDENCIES_PIP="mkdocs-bibtex mkdocs-material mkdocs-awesome-pages-plugin mkdocs-static-i18n" +# Check for sudo +if [ "`whoami`" != "root" ]; then + SUDO="sudo" +fi + # Ensure an up-to-date system -sudo apt-get update && sudo apt-get dist-upgrade -y && sudo apt-get autoremove -y && sudo apt-get clean +$SUDO apt-get update && $SUDO apt-get dist-upgrade -y && $SUDO apt-get autoremove -y && $SUDO apt-get clean # Install dependencies -sudo apt install -y $DEPENDENCIES +$SUDO apt install -y $DEPENDENCIES # Install python dependencies pip3 install $DEPENDENCIES_PIP # Configure virtual host for the local service -cat <<-EOF | sudo tee /etc/apache2/sites-available/local.conf > /dev/null +cat <<-EOF | $SUDO tee /etc/apache2/sites-available/local.conf > /dev/null <VirtualHost *:80> ServerName estudo.local DocumentRoot "/srv/shared/site" @@ -36,8 +41,8 @@ cat <<-EOF | sudo tee /etc/apache2/sites-available/local.conf > /dev/null EOF # Enable virtual host -sudo a2ensite local -sudo systemctl reload apache2 +$SUDO a2ensite local +$SUDO systemctl reload apache2 # Configure PATH mkdir -p ~/.custom |