#!/bin/sh

# Add repositories
sudo apt-key adv \
  --keyserver "hkp://keyserver.ubuntu.com:80" \
  --recv 'E5267A6C' && \
sudo apt-get update && \
sudo apt-get -y install software-properties-common python-software-properties

# Install & Cleanup
sudo apt-get update && \
sudo apt-get -y install \
  postfix unzip wget vim git \
  curl libcurl3 libcurl3-dev \
  python-setuptools && \
sudo apt-get clean autoclean && \
sudo apt-get autoremove -y

