- ansible/: VM provisioning playbooks and roles - provision-vm.yml: create KVM VM from Ubuntu cloud image - install.yml: install OpenClaw on guest (upstream) - customize.yml: swappiness, virtiofs fstab, linger - roles/vm/: libvirt domain XML, cloud-init templates - inventory.yml + host_vars/zap.yml: zap instance config - backup-openclaw-vm.sh: daily rsync + MinIO upload - restore-openclaw-vm.sh: full redeploy from scratch - README.md: full operational documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
716 B
YAML
25 lines
716 B
YAML
---
|
|
- name: Include system tools installation tasks
|
|
ansible.builtin.include_tasks: system-tools.yml
|
|
|
|
- name: Include Tailscale installation tasks
|
|
ansible.builtin.include_tasks: tailscale-linux.yml
|
|
when: tailscale_enabled | bool
|
|
|
|
- name: Include user creation tasks
|
|
ansible.builtin.include_tasks: user.yml
|
|
|
|
- name: Include Docker installation tasks
|
|
ansible.builtin.include_tasks: docker-linux.yml
|
|
when: not ci_test
|
|
|
|
- name: Include firewall configuration tasks
|
|
ansible.builtin.include_tasks: firewall-linux.yml
|
|
when: not ci_test
|
|
|
|
- name: Include Node.js installation tasks
|
|
ansible.builtin.include_tasks: nodejs.yml
|
|
|
|
- name: Include OpenClaw setup tasks
|
|
ansible.builtin.include_tasks: openclaw.yml
|