- name: Remove p4benchmark logs
hosts: bench_clients
remote_user: perforce
vars:
bench_dir: /home/perforce/p4benchmark
tasks:
- name: Fine files to delete
find:
paths: "{{bench_dir}}"
patterns: slave*.out
register: files_to_delete
- name: Ansible remove file glob
file:
path: "{{ item.path }}"
state: absent
with_items: "{{ files_to_delete.files }}"
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #3 | 24711 | Robert Cowham | Restructure and tidy up | ||
| #2 | 24687 | Robert Cowham | Got analysis working | ||
| #1 | 22003 | Robert Cowham | Latest state - with p4python and no syncing |