]> WPIA git - infra.git/blob - packer/debian-9/scripts/00-install-packages.sh
add: packer template for debian-9 installation
[infra.git] / packer / debian-9 / scripts / 00-install-packages.sh
1 #!/usr/bin/env bash
2
3 set -euo pipefail
4
5 export DEBIAN_FRONTEND=noninteractive
6
7 # Default packages installed, which makes the image usable for WPIA teams. These
8 # tools are pretty important to have for QEMU, as it makes the image smarter.
9 apt-get update
10 apt-get install --no-install-recommends \
11     acpid \
12     cloud-init \
13     cloud-guest-utils \
14     lsb-release \
15     net-tools \
16     qemu-guest-agent \
17     puppet \
18     puppet-master \
19     --yes
20
21 # These tools are just "nice to have".
22 apt-get install --no-install-recommends \
23     curl \
24     git \
25     less \
26     localepurge \
27     vim \
28     emacs-nox \
29     tmux \
30     --yes