Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Fedora CoreOS 41 and remove support for older fedora versions #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Not able to set time in rhel8 due to bug in rhel8
Version
-------

* `4.0.1` --- Allow Fedora CoreOS 41 and remove support for older fedora versions.
* `4.0.0` --- Updated for ansible-core 2.16. Removed support for Ubuntu Xenial and Ubuntu Bionic.
* `3.2.0` --- Added Ubuntu Noble support
* `3.1.3` --- Allow Fedora CoreOS 39
Expand Down Expand Up @@ -49,8 +50,7 @@ This role is limited to
* CentOS Stream 8
* RHEL 8
* RHEL 9
* Fedora CoreOS 38
* Fedora CoreOS 39
* Fedora CoreOS 41

Role Variables
--------------
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
( ansible_distribution|lower == "ubuntu" and ansible_distribution_version|int in [20, 22, 24] )
or ( ansible_distribution|lower == "centos" and ansible_distribution_major_version|int in [7, 8] )
or ( ansible_distribution|lower == "redhat" and ansible_distribution_major_version|int in [8, 9] )
or ( ansible_distribution|lower == "fedora" and ansible_distribution_major_version|int in [38, 39] )
or ( ansible_distribution|lower == "fedora" and ansible_distribution_major_version|int in [41] )

- name: Chrony variables for ubuntu
ansible.builtin.set_fact:
Expand Down
Loading