Refactor and require user to manage 'become'
This commit is contained in:
parent
6a91dfcfe4
commit
a330660cea
|
@ -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
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
---
|
---
|
||||||
local_users: []
|
accounts: []
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
---
|
---
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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: []
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
localhost
|
localhost
|
||||||
|
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue