commit | cfd9a039e480580287bfe3a5d63721722dba8df0 | [log] [tgz] |
---|---|---|
author | Isaac Wilcove <isaac@wilcove.com> | Sun Jan 15 00:08:58 2017 +0000 |
committer | Isaac Wilcove <isaac@wilcove.com> | Sun Jan 15 00:08:58 2017 +0000 |
tree | c99890c35d36e3f8dbc9c0954fb03fc89e6c59bd | |
parent | 51f95c4ec0267c5fe3921b71bb8064ea24bb8878 [diff] [blame] |
Import VM setup scripts Imported from: https://robotics.mvla.net/svn/frc971/2016/trunk/src/vagrant_dev_vm/ Change-Id: I4b4c50262d24b1c5d293f4a518525ee28c6db003
diff --git a/vm/setup_scouting.sh b/vm/setup_scouting.sh new file mode 100755 index 0000000..3360ff5 --- /dev/null +++ b/vm/setup_scouting.sh
@@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +set -e +set -u + +export DEBIAN_FRONTEND=noninteractive + +readonly PKGS=( + python3 + python3-flask +) + +# Install all the packages that we need/want. +apt-get update +for pkg in "${PKGS[@]}"; do + apt-get install -y -f --force-yes "$pkg" +done