Created ansible script to configure target controller

This commit is contained in:
2026-04-16 10:41:42 +00:00
parent 845f61e710
commit f99f174248
5 changed files with 99 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
---
- name: Setup robot
hosts: raspbot
become: true
vars:
docker_users:
- "{{ robot_user }}"
pre_tasks:
- name: Enable SPI via raspi-config
command: raspi-config nonint do_spi 0
changed_when: false
roles:
- geerlingguy.docker