mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
10 lines
191 B
Bash
Executable file
10 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
. /usr/share/yunohost/helpers.d/filesystem
|
|
|
|
backup_dir="${1}/conf/xmpp"
|
|
|
|
ynh_backup /etc/metronome "${backup_dir}/etc"
|
|
ynh_backup /var/lib/metronome "${backup_dir}/var"
|