Fixing a mapping issue for some of the backup cleanups

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

View File

@ -113,7 +113,7 @@
ansible.builtin.set_fact:
oldest_file_paths: >-
{{ (all_pfsense_backups.files | sort(attribute='mtime'))[:all_pfsense_backups.files | length - backup_number_to_keep] |
map(attribute=path) | list }}
map(attribute='path') | list }}
- name: Remove the files
ansible.builtin.file:
@ -182,7 +182,7 @@
ansible.builtin.set_fact:
oldest_file_paths: >-
{{ (backup_env_files.files | sort(attribute='mtime'))[:backup_env_files.files | length - env_backups_to_keep] |
map(attribute=path) | list }}
map(attribute='path') | list }}
- name: Remove the files
ansible.builtin.file:

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: