lxc-ramdisk/bin/gitlab-runner-helper.sh

15 lines
325 B
Bash
Executable File

#! /usr/bin/env bash
echo "Waiting for network to come online..."
while ! ping -c 1 google.fr ; do
sleep 1
done
pacman -Sy
pacman --noconfirm -S gitlab-runner docker
ln -sf /etc/gitlab-runner.toml /etc/gitlab-runner/config.toml
systemctl enable gitlab-runner docker
systemctl start docker
systemctl restart gitlab-runner