Disable Wifi and BT

This commit is contained in:
2024-11-06 20:55:40 -05:00
parent 2ce818aa1e
commit 23c5f81511
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
---
- name: Disable Wi-Fi and Bluetooth on Raspberry Pi
hosts: all
become: yes
tasks:
- name: Ensure Wi-Fi is disabled in config.txt
lineinfile:
path: /boot/firmware/config.txt
regexp: '^#?dtoverlay=-disable-wifi'
line: 'dtoverlay=-disable-wifi'
state: present
create: yes
- name: Ensure Bluetooth is disabled in config.txt
lineinfile:
path: /boot/firmware/config.txt
regexp: '^#?dtoverlay=-disable-bt'
line: 'dtoverlay=-disable-bt'
state: present
create: yes

View File

@@ -5,7 +5,7 @@ home-k8s1 ansible_host=192.168.0.201 ansible_user=pi ansible_ssh_private_key_fil
home-k8s2 ansible_host=192.168.0.202 ansible_user=pi ansible_ssh_private_key_file=~/.ssh/id_rsa
home-k8s3 ansible_host=192.168.0.203 ansible_user=pi ansible_ssh_private_key_file=~/.ssh/id_rsa
home-k8s4 ansible_host=192.168.0.204 ansible_user=pi ansible_ssh_private_key_file=~/.ssh/id_rsa
home-k8s0 ansible_host=192.168.0.205 ansible_user=pi ansible_ssh_private_key_file=~/.ssh/id_rsa
#home-k8s0 ansible_host=192.168.0.205 ansible_user=pi ansible_ssh_private_key_file=~/.ssh/id_rsa
[all:vars]
ansible_python_interpreter=/usr/bin/python3