Solved bug which existed due to user structure refactoring

This commit is contained in:
2025-07-09 12:31:37 +02:00
parent e7322a239e
commit 73329506a9
3 changed files with 6 additions and 4 deletions

View File

@@ -7,9 +7,10 @@ INCLUDES_OUT := ./tasks/utils/server-roles.yml
INCLUDES_SCRIPT := ./cli/generate_playbook.py
EXTRA_USERS := $(shell \
find $(ROLES_DIR) -maxdepth 1 -type d -name 'web-app*' -printf '%f\n' \
| sed -E 's/^web-app[_-]?//' \
find $(ROLES_DIR) -maxdepth 1 -type d -name '*' -printf '%f\n' \
| sed -E 's/.*-//' \
| grep -E -x '[a-z0-9]+' \
| sort -u \
| paste -sd, - \
)