mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
9 lines
199 B
Bash
9 lines
199 B
Bash
#!/bin/bash
|
|
|
|
backup_dir="$1/xmpp"
|
|
|
|
sudo cp -a $backup_dir/etc/* /etc/metronome/
|
|
sudo cp -a $backup_dir/var/* /var/lib/metronome/
|
|
|
|
# Restart to apply new conf and certs
|
|
sudo service metronome restart
|