Move remote xmpp backup to app script
This commit is contained in:
parent
84db3b4037
commit
c2f56cd1ec
|
@ -142,7 +142,11 @@ function restore_local_xmpp {
|
||||||
}
|
}
|
||||||
|
|
||||||
function backup_remote_xmpp {
|
function backup_remote_xmpp {
|
||||||
echo -n ''
|
if [ -d /var/lib/prosody ]; then
|
||||||
|
echo $"Backing up the XMPP settings"
|
||||||
|
backup_directory_to_friend /var/lib/prosody xmpp
|
||||||
|
echo $"Backup of XMPP settings complete"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function restore_remote_xmpp {
|
function restore_remote_xmpp {
|
||||||
|
|
|
@ -258,13 +258,6 @@ function backup_mailing_list {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function backup_xmpp {
|
|
||||||
if [ -d /var/lib/prosody ]; then
|
|
||||||
echo $"Backing up the XMPP settings"
|
|
||||||
backup_directory_to_friend /var/lib/prosody xmpp
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function backup_web_server {
|
function backup_web_server {
|
||||||
if [ -d /etc/nginx ]; then
|
if [ -d /etc/nginx ]; then
|
||||||
echo $"Backing up web settings"
|
echo $"Backing up web settings"
|
||||||
|
@ -470,7 +463,6 @@ if [[ $TEST_MODE == "no" ]]; then
|
||||||
backup_certs
|
backup_certs
|
||||||
backup_mailing_list
|
backup_mailing_list
|
||||||
|
|
||||||
backup_xmpp
|
|
||||||
backup_ipfs
|
backup_ipfs
|
||||||
backup_dlna
|
backup_dlna
|
||||||
backup_voip
|
backup_voip
|
||||||
|
|
Loading…
Reference in New Issue