Move remote tox backup to app script
This commit is contained in:
parent
e3260ed1c9
commit
fa4a3a57ce
|
@ -105,7 +105,15 @@ function restore_local_tox {
|
||||||
}
|
}
|
||||||
|
|
||||||
function backup_remote_tox {
|
function backup_remote_tox {
|
||||||
echo -n ''
|
if [ -d /var/lib/tox-bootstrapd ]; then
|
||||||
|
echo "Backing up Tox node settings"
|
||||||
|
if [ -d /var/lib/tox-bootstrapd/Maildir ]; then
|
||||||
|
rm -rf /var/lib/tox-bootstrapd/Maildir
|
||||||
|
fi
|
||||||
|
cp /etc/tox-bootstrapd.conf /var/lib/tox-bootstrapd
|
||||||
|
backup_directory_to_friend /var/lib/tox-bootstrapd tox
|
||||||
|
echo "Backup of Tox node settings complete"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function restore_remote_tox {
|
function restore_remote_tox {
|
||||||
|
|
|
@ -289,17 +289,6 @@ function backup_voip {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function backup_tox {
|
|
||||||
if [ -d /var/lib/tox-bootstrapd ]; then
|
|
||||||
echo "Backing up Tox node settings"
|
|
||||||
if [ -d /var/lib/tox-bootstrapd/Maildir ]; then
|
|
||||||
rm -rf /var/lib/tox-bootstrapd/Maildir
|
|
||||||
fi
|
|
||||||
cp /etc/tox-bootstrapd.conf /var/lib/tox-bootstrapd
|
|
||||||
backup_directory_to_friend /var/lib/tox-bootstrapd tox
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function backup_mariadb {
|
function backup_mariadb {
|
||||||
if [ ${#DATABASE_PASSWORD} -gt 1 ]; then
|
if [ ${#DATABASE_PASSWORD} -gt 1 ]; then
|
||||||
if [ ! -d /root/tempmariadb ]; then
|
if [ ! -d /root/tempmariadb ]; then
|
||||||
|
@ -450,7 +439,6 @@ if [[ $TEST_MODE == "no" ]]; then
|
||||||
backup_mailing_list
|
backup_mailing_list
|
||||||
|
|
||||||
backup_voip
|
backup_voip
|
||||||
backup_tox
|
|
||||||
|
|
||||||
backup_extra_directories
|
backup_extra_directories
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue