Initial commit

This commit is contained in:
2024-12-14 13:08:21 +01:00
commit 5c23ca311e
29 changed files with 1054 additions and 0 deletions

8
tests/.ansible-lint Executable file
View File

@ -0,0 +1,8 @@
parseable: true
use_default_rules: true
verbosity: 1
skip_list:
- role-name
- line-length
- command-instead-of-shell
- package-latest

11
tests/ansible.cfg Executable file
View File

@ -0,0 +1,11 @@
[defaults]
inventory = hosts
host_key_checking = false
gathering = smart
fact_caching = jsonfile
fact_caching_connection = /tmp
roles_path = roles
timeout = 10
module_name = shell
retry_files_enabled = false
interpreter_python = /usr/bin/python3

1
tests/hosts Executable file
View File

@ -0,0 +1 @@
localhost ansible_connection=local

5
tests/playbook.yml Executable file
View File

@ -0,0 +1,5 @@
---
- hosts: localhost
gather_facts: true
roles:
- {role: default}