Refactor and require user to manage 'become'

This commit is contained in:
Santiago Lo Coco 2024-04-13 21:35:14 +02:00
parent 6a91dfcfe4
commit a330660cea
8 changed files with 8 additions and 9 deletions

View File

@ -20,7 +20,7 @@ Example Playbook
```yaml ```yaml
- hosts: servers - hosts: servers
vars: vars:
local_users: accounts:
- name: test_user1 - name: test_user1
shell: /bin/bash shell: /bin/bash
userid: 1001 userid: 1001

View File

@ -1,2 +1,2 @@
--- ---
local_users: [] accounts: []

View File

@ -3,7 +3,7 @@ argument_specs:
main: main:
short_description: Ansible Role to create local users short_description: Ansible Role to create local users
options: options:
local_users: accounts:
type: list type: list
required: true required: true
elements: dict elements: dict
@ -34,4 +34,4 @@ argument_specs:
type: list type: list
required: false required: false
default: "" default: ""
description: The primary group for the local user. description: The primary group for the local user.

View File

@ -4,6 +4,6 @@ galaxy_info:
company: cloudWerkstatt company: cloudWerkstatt
license: MIT license: MIT
min_ansible_version: 2.12.0 min_ansible_version: 2.12.0
galaxy_tags: ['users'] galaxy_tags: ['users', 'creation']
dependencies: [] dependencies: []

View File

@ -8,5 +8,4 @@
home: "{{ item.home | default(omit) }}" home: "{{ item.home | default(omit) }}"
groups: "{{ item.groups | default(omit) }}" groups: "{{ item.groups | default(omit) }}"
generate_ssh_key: yes generate_ssh_key: yes
loop: "{{ local_users }}" loop: "{{ accounts }}"
become: true

View File

@ -1,2 +1 @@
localhost localhost

View File

@ -3,6 +3,7 @@
hosts: localhost hosts: localhost
connection: local connection: local
gather_facts: no gather_facts: no
become: true
vars: vars:
local_users: local_users: