You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
433 B
15 lines
433 B
---
|
|
|
|
- name: Compress previous version
|
|
command: tar cJf {{ seafile_root_dir }}/archives/{{ seafile_current_version.stdout }}.txz ./
|
|
environment:
|
|
XZ_OPT: -T0
|
|
args:
|
|
chdir: "{{ seafile_root_dir }}/archives/{{ seafile_current_version.stdout }}"
|
|
warn: False
|
|
tags: seafile
|
|
|
|
- name: Remove archive directory
|
|
file: path={{ seafile_root_dir }}/archives/{{ seafile_current_version.stdout }} state=absent
|
|
tags: seafile
|
|
|
|
|