base_vagrant_project/vagrant/lin_bootstrap.sh
2020-07-29 12:27:30 +01:00

12 lines
190 B
Bash

#!/usr/bin/env bash
# Update repositories
apt-get update
apt-get upgrade
# Install utilities
apt-get install -y unzip
apt-get install -y git
apt-get install -y make
apt-get install -y g++