Skip to content

Commit

Permalink
Allow Fedora CoreOS 39
Browse files Browse the repository at this point in the history
  • Loading branch information
KjetilKnutsen committed Nov 22, 2023
1 parent 0b2dc17 commit 190d948
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Role for handling `/etc/sysctl.d/*.conf` files. Applies new sysctl setting on ru
Version
-------

* `2.1.2` --- Allow Fedora CoreOS 39
* `2.1.1` --- bug fix, ansible-lint
* `2.1.0` --- add Fedora CoreOS support
* `2.0.0` --- updated for ansible 2.12.9
Expand All @@ -32,7 +33,8 @@ This role is limited to
* CentOS Stream 8
* RHEL 8
* RHEL 9
* Fedora CoreOS
* Fedora CoreOS 38
* Fedora CoreOS 39

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 [16, 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: Set sysctl
ansible.builtin.include_tasks: sysctl.yml
Expand Down

0 comments on commit 190d948

Please sign in to comment.