Refactor
This commit is contained in:
parent
0e9de7a409
commit
70f2ed5162
|
@ -8,7 +8,7 @@ authors:
|
||||||
|
|
||||||
description: This collection contains roles to manage SSH settings and create local user accounts.
|
description: This collection contains roles to manage SSH settings and create local user accounts.
|
||||||
|
|
||||||
license:
|
license:
|
||||||
- MIT
|
- MIT
|
||||||
license_file: LICENSE.md
|
license_file: LICENSE.md
|
||||||
|
|
||||||
|
@ -21,4 +21,4 @@ repository: https://git.slc.ar/slococo/ansible-playground
|
||||||
issues: https://git.slc.ar/slococo/ansible-playground/issues
|
issues: https://git.slc.ar/slococo/ansible-playground/issues
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
"community.crypto": ">=2.0.0"
|
"community.crypto": ">=2.0.0"
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
- name: Configure SSH and add user accounts
|
- name: Configure SSH and add user accounts
|
||||||
hosts: all
|
hosts: all
|
||||||
become: true
|
become: true
|
||||||
|
collections:
|
||||||
|
- slococo.playground
|
||||||
gather_facts: true
|
gather_facts: true
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
|
@ -16,4 +18,4 @@
|
||||||
userid: 38000088
|
userid: 38000088
|
||||||
expiry_date: '2024-12-31'
|
expiry_date: '2024-12-31'
|
||||||
passwordless: true
|
passwordless: true
|
||||||
private_key_path: /Users/slococo/keys/
|
private_key_path: /Users/slococo/keys/
|
||||||
|
|
|
@ -7,3 +7,6 @@ galaxy_info:
|
||||||
galaxy_tags: ['users', 'creation']
|
galaxy_tags: ['users', 'creation']
|
||||||
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
|
|
||||||
|
collections:
|
||||||
|
- community.crypto
|
||||||
|
|
Loading…
Reference in New Issue