Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. - name: find all files that are older than three
  2. win_find:
  3. paths: C:\Websites\zzzBackup
  4. age: "2w"
  5. file_type: file
  6. register: dirsOlderThan12w
  7.  
  8. - name: remove older than 12 weeks but first ten newest
  9. win_file:
  10. path: "{{ item.path }}"
  11. state: absent
  12. with_items: "{{ (dirsOlderThan12w.files | sort(attribute='ctime'))[10:] | list }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement