Files
hercules-hyperion/scripts/ci/bootstrap-apt.sh
Yvan Janssens 4d7fca584d
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
fix bootstrap apt on noble
2026-05-04 19:39:21 +02:00

37 lines
677 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
export DEBIAN_FRONTEND=noninteractive
apt-get update
printf 'Acquire::http::Proxy "http://10.64.44.6:3142";\n' >/etc/apt/apt.conf.d/80proxy
apt-get upgrade -y
apt-get install -y --no-install-recommends build-essential
apt-get install -y --no-install-recommends software-properties-common
add-apt-repository -y universe
apt-get update
apt-get install -y --no-install-recommends \
autoconf \
automake \
ca-certificates \
cmake \
curl \
flex \
gawk \
git \
gnupg \
libbz2-dev \
libcap2-bin \
libltdl-dev \
libtool-bin \
m4 \
ncat \
reprepro \
sudo \
time \
wget \
zlib1g-dev
update-ca-certificates