#!/bin/bash
# Do an apt-get update, so that packages can be installed.

set -eu
set -o pipefail

apt-get -y update
