blob: d31a372087e247fc8d30824c61b879003018b161 [file] [log] [blame]
Isaac Wilcovecfd9a032017-01-15 00:08:58 +00001#!/usr/bin/env bash
2
3set -e
4set -u
5
6export DEBIAN_FRONTEND=noninteractive
7
8# Set up contrib and non-free so we can install some more interesting programs.
9cat > /etc/apt/sources.list.d/contrib.list <<EOT
Philipp Schrader85a71fa2017-12-20 19:35:22 -080010deb http://ftp.us.debian.org/debian/ jessie contrib non-free
11deb-src http://ftp.us.debian.org/debian/ jessie contrib non-free
Isaac Wilcovecfd9a032017-01-15 00:08:58 +000012EOT
13
14# Get a list of the latest packages.
15apt-get update