blob: d713856925524d60fea047f05c503d9a8659b39e [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
8readonly PKGS=(
9 iceweasel
10 lightdm
11 mousepad
12 xfce4
13 xfce4-terminal
14)
15
16# Install all the packages that we need/want.
17for pkg in "${PKGS[@]}"; do
18 apt-get install -y -f "$pkg"
19done