STAM 46fd18555d
atlasian new images
+ jira
+ bitbucket
+ confluence
+ crowd
2025-03-29 18:37:26 +03:00

11 lines
327 B
Bash
Executable File

#!/usr/bin/env bash
set -eEo pipefail
wget --no-check-certificate -c https://gitlab-runner-downloads.s3.amazonaws.com/latest/deb/gitlab-runner_amd64.deb --random-wait -O /tmp/gitlab-runner.deb
dpkg -i "/tmp/gitlab-runner.deb"
apt-get update
apt-get -f install -y
rm -rfv /var/lib/apt/lists/*
rm -rfv "/tmp/gitlab-runner.deb"