简体   繁体   English

删除所有旧文件,但使用 ansible-playbook 保留最新的 4 个文件

[英]Delete all old files, but keep newest 4 files using ansible-playbook

I would like to delete all old files, and keep newest 4 files.我想删除所有旧文件,并保留最新的 4 个文件。 The output isn't what i expected.输出不是我所期望的。 Even i use absent on file modules, but it doesn't delete the files.即使我在文件模块上使用不存在,但它不会删除文件。

My files are here我的文件在这里

# ls -l /home/tomcat/backup
total 0
-rw-r--r-- 1 root root 0 Mar  3 14:21 1
-rw-r--r-- 1 root root 0 Mar  3 14:21 2
-rw-r--r-- 1 root root 0 Mar  3 14:21 3
-rw-r--r-- 1 root root 0 Mar  3 14:21 4
-rw-r--r-- 1 root root 0 Mar  3 14:21 5
-rw-r--r-- 1 root root 0 Mar  3 14:21 6
-rw-r--r-- 1 root root 0 Mar  3 14:21 as
-rw-r--r-- 1 root root 0 Mar  3 14:21 asd
-rw-r--r-- 1 root root 0 Mar  3 14:21 df
-rw-r--r-- 1 root root 0 Mar  3 14:21 fas
-rw-r--r-- 1 root root 0 Mar  3 14:21 y6

ansible.yml ansible.yml

- name: Prerequsite Deployement | Get first 4 files
  shell: "ls -t {{ item.path }}/{{ item.filename }} | tail -n +4"
  with_items:
    - { path: /home/tomcat/backup, filename: "*" }
  register: files_matched
  tags: prerequsite_deployment

- debug:
    msg: "{{item.stdout_lines}}"
  with_items: "{{files_matched.results}}"
  tags: prerequsite_deployment

- name: Prerequsite Deployement | Clean up path
  file:
    path: "{{item.stdout_lines}}"
    state: absent
  with_items:
    - "{{files_matched.results}}"
  tags: prerequsite_deployment

the result ouput结果输出

# ls -l /home/tomcat/backup
total 0
-rw-r--r-- 1 root root 0 Mar  3 14:21 1
-rw-r--r-- 1 root root 0 Mar  3 14:21 2
-rw-r--r-- 1 root root 0 Mar  3 14:21 3
-rw-r--r-- 1 root root 0 Mar  3 14:21 4
-rw-r--r-- 1 root root 0 Mar  3 14:21 5
-rw-r--r-- 1 root root 0 Mar  3 14:21 6
-rw-r--r-- 1 root root 0 Mar  3 14:21 as
-rw-r--r-- 1 root root 0 Mar  3 14:21 asd
-rw-r--r-- 1 root root 0 Mar  3 14:21 df
-rw-r--r-- 1 root root 0 Mar  3 14:21 fas
-rw-r--r-- 1 root root 0 Mar  3 14:21 y6

My expected result output我的预期结果输出

# ls -l /home/tomcat/backup
total 0
-rw-r--r-- 1 root root 0 Mar  3 14:21 1
-rw-r--r-- 1 root root 0 Mar  3 14:21 2
-rw-r--r-- 1 root root 0 Mar  3 14:21 3
-rw-r--r-- 1 root root 0 Mar  3 14:21 4

The attribute mtime in the dictionaries listed in the registered result.files can be used to sort the files.注册的result.files列出的字典中的属性mtime可用于对文件进行排序。 For example例如

  - find:
      paths: dir1
      recurse: true
    register: result

  - set_fact:
      my_files: "{{ result.files|
                    sort(attribute='mtime')|
                    map(attribute='path')|
                    list }}"

Optionally list the files but the last (newest) 4 files可选择列出文件,但最后(最新)4 个文件

  - debug:
      var: item
    loop: "{{ my_files[0:-3] }}"

Delete the files if this is what you want如果这是您想要的,请删除文件

  - file:
      state: absent
      path: "{{ item }}"
    loop: "{{ my_files[0:-3] }}"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM