network/tests/setup-snapshot.yml
Rich Megginson 211412d035 style: ansible-lint - fix missing YAML document start
ansible-lint requires that YAML documents begin with a line
consisting of `---`

Signed-off-by: Rich Megginson <rmeggins@redhat.com>
2023-04-28 09:15:50 -06:00

14 lines
327 B
YAML

---
- name: Play for setting up snapshots
hosts: all
tasks:
- name: Set facts used by role
include_role:
name: linux-system-roles.network
tasks_from: set_facts.yml
public: true
- name: Install test packages
package:
name: "{{ network_packages }}"
state: present