Raspberry Pi 4 Fedra IoT setup and configuration via Ansible.
ansible-galaxy collection install ansible.posix community.general
ansible-playbook -i inventory.yaml playbook.yaml
Run a command on all nodes:
ansible all -i inventory.yaml -a "rpm-ostree status"
Reboot all nodes using the reboot module:
ansible all -i inventory.yaml -m ansible.builtin.reboot -a "reboot_timeout=300"