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 39 #17

Merged
merged 1 commit into from
Nov 22, 2023
Merged
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
1 change: 1 addition & 0 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
-------

* `3.1.3` --- Allow Fedora CoreOS 39
* `3.1.2` --- fix checkmode
* `3.1.1` --- bug fix, ansible-lint
* `3.1.0` --- added support for Fedora CoreOS (FCOS 38.x.x.x) but with no tests
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 [18, 20, 22] )
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] )
or ( ansible_distribution|lower == "fedora" and ansible_distribution_major_version|int in [38, 39] )

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