22 lines
436 B
YAML
22 lines
436 B
YAML
---
|
|
- name: Raspberry Debian Linux Setup
|
|
hosts: all
|
|
tasks:
|
|
|
|
- name: Remove the grpup pi
|
|
ansible.builtin.user:
|
|
name: pi
|
|
state: absent
|
|
remove: yes
|
|
|
|
- name: Remove the user pi
|
|
ansible.builtin.user:
|
|
name: pi
|
|
state: absent
|
|
remove: yes
|
|
|
|
- name: Raspi do_wifi_country DE
|
|
run_once: true
|
|
ansible.builtin.command: raspi-config nonint do_wifi_country DE
|
|
|