Skip to content

Commit

Permalink
Fix Raspberry tasks for Debian (#151)
Browse files Browse the repository at this point in the history
* Fix Raspberry tasks for Debian

Signed-off-by: Rick <[email protected]>
Signed-off-by: Rick <[email protected]>

* Move debian yaml files

Signed-off-by: Rick <[email protected]>
Signed-off-by: Rick <[email protected]>

* Add task for Debian to install iptables

Signed-off-by: Rick <[email protected]>

* Add check for cmdline.txt path for Debian

Signed-off-by: Rick <[email protected]>

* Remove Debian11 tasks file

Signed-off-by: Rick <[email protected]>

---------

Signed-off-by: Rick <[email protected]>
Signed-off-by: Rick <[email protected]>
Co-authored-by: Rick <[email protected]>
Co-authored-by: Rick <[email protected]>
  • Loading branch information
3 people authored Nov 7, 2023
1 parent 8e70812 commit b65b610
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 8 deletions.
17 changes: 9 additions & 8 deletions roles/raspberrypi/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >

Check failure on line 39 in roles/raspberrypi/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint

39:10 [trailing-spaces] trailing spaces
( detected_distribution | default("") == "Raspbian" or
detected_distribution | default("") == "Debian" )
- name: execute OS related tasks on the Raspberry Pi
include_tasks: "{{ item }}"
Expand Down
34 changes: 34 additions & 0 deletions roles/raspberrypi/tasks/prereq/Debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
- name: Check if /boot/firmware/cmdline.txt exists
stat:
path: /boot/firmware/cmdline.txt
register: boot_firmware_cmdline_txt

- name: Activating cgroup support
lineinfile:
path: "{{ (boot_firmware_cmdline_txt.stat.exists) | ternary('/boot/firmware/cmdline.txt', '/boot/cmdline.txt') }}"
regexp: '^((?!.*\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\b).*)$'
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
backrefs: true
notify: reboot

- name: Install iptables
apt:
name: iptables

- name: Flush iptables before changing to iptables-legacy
iptables:
flush: true
changed_when: false # iptables flush always returns changed

- name: Changing to iptables-legacy
alternatives:
path: /usr/sbin/iptables-legacy
name: iptables
register: ip4_legacy

- name: Changing to ip6tables-legacy
alternatives:
path: /usr/sbin/ip6tables-legacy
name: ip6tables
register: ip6_legacy

0 comments on commit b65b610

Please sign in to comment.