Skip to content

Commit

Permalink
Add MVP commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Daemonslayer2048 committed Feb 1, 2024
1 parent 104f126 commit 547978d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/rke2_common/tasks/rpm_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
when:
- not stat_rke2_common_repo.stat.exists
- ansible_facts['os_family'] == "RedHat" or ansible_facts['os_family'] == "Rocky"
- ansible_facts['distribution_major_version'] == "7" or ansible_facts['distribution_major_version'] == "8"
- ansible_facts['distribution_major_version'] == "7" or ansible_facts['distribution_major_version'] == "8" or ansible_facts['distribution_major_version'] == "9"

Check failure on line 21 in roles/rke2_common/tasks/rpm_install.yml

View workflow job for this annotation

GitHub Actions / Lint for push

yaml[line-length]

Line too long (164 > 120 characters)

Check warning on line 21 in roles/rke2_common/tasks/rpm_install.yml

View workflow job for this annotation

GitHub Actions / Lint for push

21:121 [line-length] line too long (164 > 120 characters)

# Does the Rancher RKE2 versioned repo exist already
- name: Check to see if rke2 versioned repo exists
Expand All @@ -38,7 +38,7 @@
when:
- not stat_rke2_common_repo.stat.exists
- ansible_facts['os_family'] == "RedHat" or ansible_facts['os_family'] == "Rocky"
- ansible_facts['distribution_major_version'] == "7" or ansible_facts['distribution_major_version'] == "8"
- ansible_facts['distribution_major_version'] == "7" or ansible_facts['distribution_major_version'] == "8" or ansible_facts['distribution_major_version'] == "9"

Check failure on line 41 in roles/rke2_common/tasks/rpm_install.yml

View workflow job for this annotation

GitHub Actions / Lint for push

yaml[line-length]

Line too long (164 > 120 characters)

Check warning on line 41 in roles/rke2_common/tasks/rpm_install.yml

View workflow job for this annotation

GitHub Actions / Lint for push

41:121 [line-length] line too long (164 > 120 characters)

- name: YUM-Based | Install rke2-server
ansible.builtin.yum:
Expand Down

0 comments on commit 547978d

Please sign in to comment.