Fixing a mapping issue for some of the backup cleanups

This commit is contained in:
2025-08-31 11:16:09 -04:00
parent 01e4a973e0
commit bbe8debeb6
2 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@
ansible.builtin.set_fact:
oldest_file_paths: >-
{{ (all_backup_files.files | sort(attribute='mtime'))[:all_backup_files.files | length - backup_rules.max_backups_kept] |
map(attribute=path) | list }}
map(attribute='path') | list }}
- name: Remove the files
ansible.builtin.file: