Each node now gets three NetworkManager wifi connections via a new wifi role: dotnetwork (home), dotmobile (phone hotspot, for field troubleshooting), and a host-specific deployed-location network. Credentials live in a new per-repo ansible-vault (group and host scoped), matching the pattern already used in dotnetwork. Also updates the README's Pi imaging instructions from Bookworm to Trixie, matching what the nodes actually run. Co-Authored-By: Claude Sonnet 5 <[email protected]>
24 lines
460 B
YAML
24 lines
460 B
YAML
---
|
|
- name: Deploy MeshCore monitoring nodes
|
|
hosts: meshcore
|
|
vars_prompt:
|
|
- name: tailscale_auth_key
|
|
prompt: "Tailscale auth key (leave blank to skip)"
|
|
private: true
|
|
default: ""
|
|
|
|
pre_tasks:
|
|
- name: Update apt cache and upgrade packages
|
|
apt:
|
|
update_cache: true
|
|
upgrade: dist
|
|
autoremove: true
|
|
become: true
|
|
|
|
roles:
|
|
- wifi
|
|
- base
|
|
- meshcore_cli
|
|
- meshcore_capture
|
|
- scripts
|