view deploy/provision.d/000-system-packages.sh @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 1c904260787b
children
line wrap: on
line source
#!/bin/bash

set -e

# Install necessary system packages. This assumes we are deploying on
# Ubuntu 16.04.

# We aim to make all of these provisioning scripts non-destructive if
# run more than once. In this case, running the script again will
# install any outstanding updates.

apt-get update && \
    apt-get dist-upgrade -y && \
    apt-get install -y \
            ack-grep \
            apache2 \
            apache2-dev \
            apt-utils \
            build-essential \
            cron \
            curl \
            doxygen \
            exim4 \
            git \
            graphviz \
            imagemagick \
            libapache-dbi-perl \
            libapache2-mod-perl2 \
            libapr1-dev \
            libaprutil1-dev \
            libauthen-simple-ldap-perl \
            libcurl4-openssl-dev \
            libdbd-pg-perl \
            libpq-dev \
            libmagickwand-dev \
            libio-socket-ssl-perl \
            logrotate \
            lynx \
            mercurial \
            mercurial-git \
            openjdk-9-jdk-headless \
            postgresql \
            rsync \
            ruby \
            ruby-dev \
            sudo

locale-gen en_US.UTF-8