mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-25 00:12:37 +01:00
Fix Raspberry tasks for Debian (#151)
* Fix Raspberry tasks for Debian Signed-off-by: Rick <r.wagenaar@icloud.com> Signed-off-by: Rick <rick@kcir.nl> * Move debian yaml files Signed-off-by: Rick <r.wagenaar@icloud.com> Signed-off-by: Rick <rick@kcir.nl> * Add task for Debian to install iptables Signed-off-by: Rick <rick@kcir.nl> * Add check for cmdline.txt path for Debian Signed-off-by: Rick <rick@kcir.nl> * Remove Debian11 tasks file Signed-off-by: Rick <rick@kcir.nl> --------- Signed-off-by: Rick <r.wagenaar@icloud.com> Signed-off-by: Rick <rick@kcir.nl> Co-authored-by: Rick <r.wagenaar@icloud.com> Co-authored-by: Rick <rick@kcir.nl>
This commit is contained in:
@@ -25,19 +25,20 @@
|
||||
( ansible_facts.lsb.id|default("") == "Raspbian" or
|
||||
ansible_facts.lsb.description|default("") is match("[Rr]aspbian.*") )
|
||||
|
||||
- name: Set detected_distribution to Raspbian (ARM64 on Debian Buster)
|
||||
- name: Set detected_distribution to Debian
|
||||
set_fact:
|
||||
detected_distribution: Raspbian
|
||||
when:
|
||||
- ansible_facts.architecture is search("aarch64")
|
||||
- raspberry_pi|default(false)
|
||||
- ansible_facts.lsb.description|default("") is match("Debian.*buster")
|
||||
detected_distribution: Debian
|
||||
when: >
|
||||
raspberry_pi|default(false) and
|
||||
( ansible_facts.lsb.id|default("") == "Debian" or
|
||||
ansible_facts.lsb.description|default("") is match("Debian") )
|
||||
|
||||
- name: Set detected_distribution_major_version
|
||||
set_fact:
|
||||
detected_distribution_major_version: "{{ ansible_facts.lsb.major_release }}"
|
||||
when:
|
||||
- detected_distribution | default("") == "Raspbian"
|
||||
when: >
|
||||
( detected_distribution | default("") == "Raspbian" or
|
||||
detected_distribution | default("") == "Debian" )
|
||||
|
||||
- name: execute OS related tasks on the Raspberry Pi
|
||||
include_tasks: "{{ item }}"
|
||||
|
||||
Reference in New Issue
Block a user