blob: a2c2d2867e3fee263dea416c922790d13bfc5a33 [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 Schrader29443be2017-11-26 18:14:53 -080010deb http://ftp.us.debian.org/debian/ stretch contrib non-free
11deb-src http://ftp.us.debian.org/debian/ stretch contrib non-free
Isaac Wilcovecfd9a032017-01-15 00:08:58 +000012EOT
13
14# Get a list of the latest packages.
15apt-get update