Fix more bugs
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Santiago Lo Coco 2024-04-14 19:33:16 +02:00
parent 3975e8402e
commit 6b2177d8ee
6 changed files with 13 additions and 9 deletions

6
.ansible-lint Normal file
View File

@ -0,0 +1,6 @@
skip_list:
- galaxy[no-changelog]
mock_roles:
- slococo.playground.ssh_config
- slococo.playground.local_accounts

View File

@ -14,4 +14,3 @@ repos:
rev: 23.7.0
hooks:
- id: black

View File

@ -6,7 +6,8 @@ steps:
image: alpine/git
commands:
- apk add ansible ansible-lint
- cd slococo/playground
- ansible-galaxy collection install .
#- cd slococo/playground
#- ansible-galaxy collection install .
- ansible-galaxy collection install -r slococo/playground/requirements.yml
- ansible-lint
- ls -al

View File

@ -16,6 +16,7 @@ tags:
- users
- ssh
- config
- tools
repository: https://git.slc.ar/slococo/ansible-playground
issues: https://git.slc.ar/slococo/ansible-playground/issues

View File

@ -1,13 +1,11 @@
- name: Configure SSH and add user accounts
hosts: all
become: true
collections:
- slococo.playground
gather_facts: true
roles:
- role: ssh_config
- role: local_accounts
- role: slococo.playground.ssh_config
- role: slococo.playground.local_accounts
vars:
accounts:
- name: local_adm

View File

@ -2,4 +2,3 @@
collections:
- name: community.crypto
version: ">=2.0.0"