Merge pull request 'development' (#1) from development into main

Reviewed-on: #1
This commit is contained in:
Chris Hammer 2023-12-09 00:01:14 -05:00
commit 493c2a36f2
4 changed files with 15 additions and 2 deletions

5
.ansible-lint Normal file
View File

@ -0,0 +1,5 @@
skip_list:
- yaml[colons]
- yaml[empty-lines]
- yaml[line-length]
- no-changed-when

View File

@ -4,7 +4,7 @@ type: docker
name: run_ansible_tests_fedora39 name: run_ansible_tests_fedora39
global-variables: global-variables:
ansible_image : &ansible_image "gitea.thezengarden.net/podman/ansible-dev/fedora39:release-31" ansible_image : &ansible_image "gitea.thezengarden.net/podman/ansible-dev/fedora39:release-34"
ansible_inventory : &ansible_inventory "-i 127.0.0.1, --connection=local" ansible_inventory : &ansible_inventory "-i 127.0.0.1, --connection=local"
ansible_playbook : &ansible_playbook "hello.yml" ansible_playbook : &ansible_playbook "hello.yml"

View File

@ -5,6 +5,10 @@
tasks: tasks:
- name: Say Hello world - name: Say hello world
ansible.builtin.debug: ansible.builtin.debug:
msg: Hello world! msg: Hello world!
- name: Say goodbye world
ansible.builtin.debug:
msg: Goodbye world!

4
requirements.yml Normal file
View File

@ -0,0 +1,4 @@
---
collections:
- community.general
- ansible.posix