Compare commits

...

6 Commits

Author SHA1 Message Date
493c2a36f2 Merge pull request 'development' (#1) from development into main
Reviewed-on: #1
2023-12-09 00:01:14 -05:00
9540d1d64b change fail to debug
All checks were successful
continuous-integration/drone/push Build is passing
2023-12-08 23:59:34 -05:00
0fa78146ec add .ansible-lint
Some checks failed
continuous-integration/drone/push Build is failing
2023-12-08 23:56:55 -05:00
e9fc63d47e testing new image
Some checks failed
continuous-integration/drone/push Build is failing
2023-12-08 23:55:05 -05:00
8dd5ed9e36 add requirements.yml
Some checks failed
continuous-integration/drone/push Build is failing
2023-12-08 23:39:28 -05:00
279a06586e add dev branch for drone image testing
Some checks failed
continuous-integration/drone/push Build is failing
2023-12-08 23:37:39 -05:00
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