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

15
galaxy.md Normal file
View File

@@ -0,0 +1,15 @@
## Galaxy
Use Ansible Galaxy to manage roles and content:
```yaml
- name: Install role from Galaxy
ansible.builtin.import_role:
name: "nginx"
src: "https://galaxy.ansible.com/nginx/nginx"
# List available roles:
# ansible-galaxy role list
# Search for roles:
# ansible-galaxy role search nginx
```