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 |
Philipp Schrader | 29443be | 2017-11-26 18:14:53 -0800 | [diff] [blame^] | 10 | deb http://ftp.us.debian.org/debian/ stretch contrib non-free |
| 11 | deb-src http://ftp.us.debian.org/debian/ stretch contrib non-free |
Isaac Wilcove | cfd9a03 | 2017-01-15 00:08:58 +0000 | [diff] [blame] | 12 | EOT |
| 13 | |
| 14 | # Get a list of the latest packages. |
| 15 | apt-get update |