Isaac Wilcove | cfd9a03 | 2017-01-15 00:08:58 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | |||||
3 | set -e | ||||
4 | set -u | ||||
5 | |||||
6 | export DEBIAN_FRONTEND=noninteractive | ||||
7 | |||||
8 | # Set up contrib and non-free so we can install some more interesting programs. | ||||
9 | cat > /etc/apt/sources.list.d/contrib.list <<EOT | ||||
10 | deb http://ftp.us.debian.org/debian/ jessie contrib non-free | ||||
11 | deb-src http://ftp.us.debian.org/debian/ jessie contrib non-free | ||||
12 | EOT | ||||
13 | |||||
14 | # Get a list of the latest packages. | ||||
15 | apt-get update |