13 lines
326 B
YAML
13 lines
326 B
YAML
---
|
|
- name: Mount backup share to a VM
|
|
hosts: prod_services
|
|
become: true
|
|
tasks:
|
|
- name: Mount the backup share to the VM
|
|
ansible.builtin.include_role:
|
|
role: util/mount_nfs
|
|
vars:
|
|
mount_to: "/mnt/backups"
|
|
share: "backups"
|
|
- name: Backup instances
|
|
ansible.builtin.command: |