Removed generation of alphanumeric users

This commit is contained in:
2025-07-03 20:00:05 +02:00
parent e032fd1aa4
commit a3fd74c2e0
5 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
ROLES_DIR := ./roles
APPLICATIONS_OUT := ./group_vars/all/04_applications.yml
APPLICATIONS_SCRIPT := ./cli/generate-applications-defaults.py
APPLICATIONS_SCRIPT := ./cli/generate_applications.py
USERS_OUT := ./group_vars/all/03_users.yml
USERS_SCRIPT := ./cli/generate_users.py
INCLUDES_OUT := ./tasks/utils/docker-roles.yml
@@ -9,6 +9,7 @@ INCLUDES_SCRIPT := ./cli/generate_playbook.py
EXTRA_USERS := $(shell \
find $(ROLES_DIR) -maxdepth 1 -type d -name 'docker*' -printf '%f\n' \
| sed -E 's/^docker[_-]?//' \
| grep -E -x '[a-z0-9]+' \
| paste -sd, - \
)