8 Commits

Author SHA1 Message Date
Techno Tim e008b68193 Merge branch 'master' into master 2024-01-26 14:49:43 -06:00
joao-pc-goncalves 9ab33e0818 Revert test workflow 2024-01-26 07:58:27 +00:00
Techno Tim 67ec385702 Merge branch 'master' into master 2024-01-25 23:03:27 -06:00
Techno Tim 608c90d053 Merge branch 'master' into master 2024-01-25 16:08:35 -06:00
Techno Tim 735a5fdc8a Merge branch 'master' into master 2024-01-25 11:35:04 -06:00
João Gonçalves 5de918f9ad Merge branch 'master' into master 2024-01-12 18:24:01 +00:00
João Gonçalves 586434b80d Update test.yml 2023-12-07 16:42:06 +00:00
joao-pc-goncalves 1e25cce032 feat(k3s): added support for latest raspberrypi os (debian 12 bookworm) 2023-11-23 09:56:39 +00:00
+8
View File
@@ -31,6 +31,14 @@
- raspberry_pi|default(false) - raspberry_pi|default(false)
- ansible_facts.lsb.description|default("") is match(allowed_descriptions | join('|')) - ansible_facts.lsb.description|default("") is match(allowed_descriptions | join('|'))
- name: Set detected_distribution to Raspbian (ARM64 on Debian Bookworm)
set_fact:
detected_distribution: Raspbian
when:
- ansible_facts.architecture is search("aarch64")
- raspberry_pi|default(false)
- ansible_facts.lsb.description|default("") is match("Debian.*bookworm")
- name: Set detected_distribution_major_version - name: Set detected_distribution_major_version
set_fact: set_fact:
detected_distribution_major_version: "{{ ansible_facts.lsb.major_release }}" detected_distribution_major_version: "{{ ansible_facts.lsb.major_release }}"