Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion roles/kayobe-ci-prep/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
---
- name: Set Rocky Linux mirror to download.rockylinux.org
become: true
ansible.builtin.shell:
cmd: sed -i 's/mirrorlist/#mirrorlist/g; s/#baseurl/baseurl/g' /etc/yum.repos.d/rocky.repo
when: ansible_facts.distribution == "Rocky"

- block:
- name: Install dbus for debian system
apt:
Expand All @@ -25,7 +31,7 @@
name: dnf-plugins-core
state: present

- name: Enable the EPEL repository
- name: Disable the EPEL repository
command: dnf config-manager --disable epel

- name: Install packages needed for unprivileged mode
Expand Down
Loading