From cbfc5b93b068cb22dcb35e5eac08803c993879be Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 13 Apr 2024 21:45:05 +0200 Subject: [PATCH] Update README.md --- slococo/playground/roles/local_accounts/README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/slococo/playground/roles/local_accounts/README.md b/slococo/playground/roles/local_accounts/README.md index 7dd8776..b74d738 100644 --- a/slococo/playground/roles/local_accounts/README.md +++ b/slococo/playground/roles/local_accounts/README.md @@ -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 ----------------