ansible-buildsys-management/adhoc-compose-sync-staging.yml

15 lines
342 B
YAML

---
# This playbook is meant to be used with callable variables, like adhoc or AWX.
- name: Sync a compose to staging
hosts: srpmproc
become: true
vars_files:
- "vars/common.yml"
environment:
RLVER: "{{ release_ver }}"
tasks:
- name: "Sync from latest to staging"
import_tasks: tasks/sync/sync_to_staging.yml
...