diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..b6d3809 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,5 @@ +skip_list: + - yaml[colons] + - yaml[empty-lines] + - yaml[line-length] + - no-changed-when diff --git a/.drone.yml b/.drone.yml index 73a366a..0f7c562 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ type: docker name: run_ansible_tests_fedora39 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_playbook : &ansible_playbook "hello.yml" diff --git a/hello.yml b/hello.yml index a90c638..8d08764 100644 --- a/hello.yml +++ b/hello.yml @@ -5,6 +5,10 @@ tasks: - - name: Say Hello world + - name: Say hello world ansible.builtin.debug: msg: Hello world! + + - name: Say goodbye world + ansible.builtin.debug: + msg: Goodbye world! diff --git a/requirements.yml b/requirements.yml new file mode 100644 index 0000000..3fc0d09 --- /dev/null +++ b/requirements.yml @@ -0,0 +1,4 @@ +--- +collections: + - community.general + - ansible.posix