#!/bin/sh

# Install & Cleanup
sudo apt-get update && \
sudo apt-get -y install \
  apache2 supervisor python-certbot-apache && \
sudo apt-get clean autoclean && \
sudo apt-get autoremove -y

