mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-20 20:23:19 +02:00
13 lines
498 B
YAML
13 lines
498 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Compress previous version
|
||
|
command: tar cJf {{ bitwarden_root_dir }}/archives/{{ bitwarden_current_version }}+{{ bitwarden_web_current_version }}.txz ./
|
||
|
args:
|
||
|
warn: False
|
||
|
chdir: "{{ bitwarden_root_dir }}/archives/{{ bitwarden_current_version }}+{{ bitwarden_web_current_version }}"
|
||
|
tags: bitwarden
|
||
|
|
||
|
- name: Remove archive dir
|
||
|
file: path={{ bitwarden_root_dir }}/archives/{{ bitwarden_current_version }}+{{ bitwarden_web_current_version }} state=absent
|
||
|
tags: bitwarden
|