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