Initial qwen3 run with opencode

This commit is contained in:
2026-03-23 21:36:35 +02:00
commit 585b219b52
22 changed files with 972 additions and 0 deletions

11
ad-hoc-commands.md Normal file
View File

@@ -0,0 +1,11 @@
## Ad-Hoc Commands
```bash
ansible all -m ping
ansible all -m command -a "uptime"
ansible webserver -m apt -a "name=vim state=present"
```
Ansible is ideal for orchestrating infrastructure as code across cloud, on-premise, and hybrid environments.
---