Many updates over time

This commit is contained in:
2026-02-24 17:57:35 -07:00
parent 6b36273324
commit 0132ed6a8f
68 changed files with 1409 additions and 197 deletions

View File

@@ -0,0 +1,11 @@
---
- name: Add GitLab Runner repository script
command: curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | sudo bash
args:
creates: /etc/apt/sources.list.d/runner_gitlab-runner.list
- name: Install GitLab Runner and Helper packages
ansible.builtin.apt:
name: gitlab-runner
state: present
update_cache: yes