Initial project import

This commit is contained in:
2022-10-31 09:02:42 +13:00
commit 142c70337a
12 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
# This is an example playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: fetch /etc/apt/sources.list
command: cat /etc/apt/sources.list
register: sources
- name: Output info
debug:
var: sources
- name: Example assertion
ansible.builtin.assert:
that: true