Update README.md

This commit is contained in:
Santiago Lo Coco 2024-04-13 21:45:05 +02:00
parent ede79b6124
commit cbfc5b93b0
1 changed files with 11 additions and 4 deletions

View File

@ -1,18 +1,25 @@
Role Name
=========
Ansible Role to create local users...
An Ansible Role to create local user accounts.
Requirements
------------
...
None.
Role Variables
--------------
...
```yaml
accounts:
- name: # Username for the local user (required)
shell: # Shell for the local user (required)
userid: # User ID for the local user (required)
expiry_date: # Expiry date for the local user in the format 'YYYY-MM-DD' (optional, default: never)
home: # Home directory path for the local user (optional, default: "/home/{{ name }}")
groups: # List of groups the local user belongs to (optional, default: its own group)
```
Example Playbook
----------------