playbooks/deploy_QMD.yml
2026-06-18 17:45:01 +08:00

13 lines
341 B
YAML

---
- name: Deploy QMD extended memory
hosts: "{{ qmd_hosts | default('all') }}"
become: true
gather_facts: true
module_defaults:
ansible.builtin.apt:
lock_timeout: "{{ ai_workspace_apt_lock_timeout | default(900) | int }}"
roles:
- role: roles/vhosts/qmd/
tags: [qmd]
when: ansible_os_family != "Darwin"