Skip to content
Snippets Groups Projects
Unverified Commit a6fcf2e0 authored by zhengtianbao's avatar zhengtianbao Committed by GitHub
Browse files

Enable experimental modules when rpm-ostree version >= 2021.9 (#8202)

* Enable experimental modules when rpm-ostree version >= 2021.9

* cleanup code
parent 25316825
No related branches found
No related tags found
No related merge requests found
...@@ -149,6 +149,13 @@ ...@@ -149,6 +149,13 @@
- repo: "fedora-modular" - repo: "fedora-modular"
section: "fedora-modular" section: "fedora-modular"
- name: Enable CRI-O ex module
command: "rpm-ostree ex module enable cri-o:{{ crio_version }}"
become: true
when:
- is_ostree
- ostree_version is defined and ostree_version.stdout is version('2021.9', '>=')
- name: Enable CRI-O module - name: Enable CRI-O module
command: "dnf -y module enable cri-o:{{ crio_version }}" command: "dnf -y module enable cri-o:{{ crio_version }}"
args: args:
......
...@@ -11,6 +11,13 @@ ...@@ -11,6 +11,13 @@
set_fact: set_fact:
is_ostree: "{{ ostree.stat.exists }}" is_ostree: "{{ ostree.stat.exists }}"
- name: get ostree version
shell: "set -o pipefail && rpm-ostree --version | awk -F\\' '/Version/{print $2}'"
args:
executable: /bin/bash
register: ostree_version
when: is_ostree
- name: gather os specific variables - name: gather os specific variables
include_vars: "{{ item }}" include_vars: "{{ item }}"
with_first_found: with_first_found:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment