1#!/bin/sh 2# 3# Install packages for integration tests. 4# 5# This script is normally run via sudo in a test container or VM, such as via 6# GitHub Actions. 7# 8# Copyright 2015-2021 Russ Allbery <eagle@eyrie.org> 9# 10# SPDX-License-Identifier: MIT 11 12set -eux 13 14# Install distribution packages. 15apt-get update -qq 16apt-get install aspell autoconf automake cppcheck heimdal-multidev \ 17 krb5-config libkrb5-dev libpam0g-dev libtest-pod-perl \ 18 libtest-spelling-perl libtool perl valgrind 19