Skip to content

Commit

Permalink
Merge pull request #242 from vigiroux/master
Browse files Browse the repository at this point in the history
Add Ubuntu jammy support
  • Loading branch information
riemers committed Sep 29, 2022
2 parents 6282400 + dabeceb commit 5885f90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/install-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@
become: true
environment:
GITLAB_RUNNER_DISABLE_SKEL: "true"
when: ansible_distribution_release in ["buster", "focal"]
when: ansible_distribution_release in ["buster", "focal", "jammy"]

- name: (Debian) Install GitLab Runner
apt:
name: "{{ gitlab_runner_package }}"
state: "{{ gitlab_runner_package_state }}"
become: true
when: ansible_distribution_release not in ["buster", "focal"]
when: ansible_distribution_release not in ["buster", "focal", "jammy"]

- name: (Debian) Remove ~/gitlab-runner/.bash_logout on debian buster and ubuntu focal
file:
path: /home/gitlab-runner/.bash_logout
state: absent
when: ansible_distribution_release in ["buster", "focal"]
when: ansible_distribution_release in ["buster", "focal", "jammy"]

- name: Set systemd reload options
import_tasks: systemd-reload.yml

0 comments on commit 5885f90

Please sign in to comment.