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.
24 lines
658 B
24 lines
658 B
3 years ago
|
---
|
||
|
|
||
|
- name: Create archive directory
|
||
|
file: path={{ nd_root_dir }}/archives/{{ nd_current_version }} state=directory mode=700
|
||
|
tags: navidrome
|
||
|
|
||
|
- name: Archive previous version
|
||
|
copy: src={{ nd_root_dir }}/bin/navidrome dest={{ nd_root_dir }}/archives/{{ nd_current_version }}/ remote_src=True
|
||
|
tags: navidrome
|
||
|
|
||
|
- name: Stop navidrome during upgrade
|
||
|
service: name=navidrome state=stopped
|
||
|
tags: navidrome
|
||
|
|
||
|
- name: Archive the database and the configuration
|
||
|
copy: src={{ nd_root_dir }}/{{ item }} dest={{ nd_root_dir }}/archives/{{ nd_current_version }}/ remote_src=True
|
||
|
loop:
|
||
|
- data/navidrome.db
|
||
|
- etc/navidrome.toml
|
||
|
tags: navidrome
|
||
|
|
||
|
|
||
|
|