Initial commit
This commit is contained in:
8
tests/.ansible-lint
Executable file
8
tests/.ansible-lint
Executable 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
11
tests/ansible.cfg
Executable 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
1
tests/hosts
Executable file
@ -0,0 +1 @@
|
||||
localhost ansible_connection=local
|
5
tests/playbook.yml
Executable file
5
tests/playbook.yml
Executable file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
gather_facts: true
|
||||
roles:
|
||||
- {role: default}
|
Reference in New Issue
Block a user