Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • digital-preservation/ansible_lza_ingest
1 result
Select Git revision
Show changes
Commits on Source (2)
---
- name: |
Make sure that these tasks are only run against SubApp servers that are
used together with Rosetta. Archivematica-SubApp-VMs need to be provisioned
with another branch of this Ansible role.
used together with Archivematica.
ansible.builtin.assert:
that: "group_names | select('search', 'lza_ingest.*')"
fail_msg: This is not a SubApp VM for use with Rosetta. Aborting.
success_msg: This is a SubApp VM for use with Rosetta. Continuing.
that: "group_names | select('search', 'lza_am_ingest.*')"
fail_msg: This is not a SubApp VM for use with Archivematica. Aborting.
success_msg: This is a SubApp VM for use with Archivematica. Continuing.
tags: [always]
- name: include vars main
ansible.builtin.include_vars: "main.yml"
......