mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-25 00:12:37 +01:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
- name: Test for Raspbian
|
|
set_fact:
|
|
raspbian: '{% if
|
|
( ansible_facts.architecture is search("arm") and
|
|
ansible_facts.lsb.description is match("[Rr]aspbian.*[Bb]uster") ) or
|
|
( ansible_facts.architecture is search("aarch64") and
|
|
ansible_facts.lsb.description is match("Debian.*buster") ) %}true{% else %}false{% endif %}'
|
|
|
|
- name: Activating cgroup support
|
|
lineinfile:
|
|
path: /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
|
|
when:
|
|
- raspbian is true
|
|
|
|
- name: Flush iptables before changing to iptables-legacy
|
|
iptables:
|
|
flush: true
|
|
when:
|
|
- raspbian is true
|
|
|
|
- name: Changing to iptables-legacy
|
|
alternatives:
|
|
path: /usr/sbin/iptables-legacy
|
|
name: iptables
|
|
register: ip4_legacy
|
|
when:
|
|
- raspbian is true
|
|
|
|
- name: Changing to ip6tables-legacy
|
|
alternatives:
|
|
path: /usr/sbin/ip6tables-legacy
|
|
name: ip6tables
|
|
register: ip6_legacy
|
|
when:
|
|
- raspbian is true
|
|
|
|
- name: Rebooting
|
|
reboot:
|
|
when:
|
|
- raspbian is true |