Move remote gnusocial restore to app script
This commit is contained in:
parent
7b9e386455
commit
26f3340120
|
@ -163,7 +163,25 @@ function backup_remote_gnusocial {
|
|||
}
|
||||
|
||||
function restore_remote_gnusocial {
|
||||
echo -n ''
|
||||
if grep -q "GNU Social domain" $COMPLETION_FILE; then
|
||||
echo $"Restoring GNU Social"
|
||||
MICROBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "GNU Social domain" | awk -F ':' '{print $2}')
|
||||
|
||||
# stop the daemons
|
||||
cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
|
||||
scripts/stopdaemons.sh
|
||||
|
||||
function_check restore_database_from_friend
|
||||
restore_database_from_friend gnusocial ${MICROBLOG_DOMAIN_NAME}
|
||||
if [ -d /root/tempgnusocial ]; then
|
||||
rm -rf /root/tempgnusocial
|
||||
fi
|
||||
|
||||
# start the daemons
|
||||
cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
|
||||
scripts/startdaemons.sh
|
||||
echo $"Restore of GNU Social complete"
|
||||
fi
|
||||
}
|
||||
|
||||
function remove_gnusocial {
|
||||
|
|
|
@ -666,30 +666,6 @@ function restore_mailing_list {
|
|||
fi
|
||||
}
|
||||
|
||||
function restore_gnusocial {
|
||||
if [[ $RESTORE_APP != 'all' ]]; then
|
||||
if [[ $RESTORE_APP != 'gnusocial' ]]; then
|
||||
return
|
||||
fi
|
||||
fi
|
||||
if grep -q "GNU Social domain" $COMPLETION_FILE; then
|
||||
MICROBLOG_DOMAIN_NAME=$(cat $COMPLETION_FILE | grep "GNU Social domain" | awk -F ':' '{print $2}')
|
||||
|
||||
# stop the daemons
|
||||
cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
|
||||
scripts/stopdaemons.sh
|
||||
|
||||
restore_database_from_friend gnusocial ${MICROBLOG_DOMAIN_NAME}
|
||||
if [ -d /root/tempgnusocial ]; then
|
||||
rm -rf /root/tempgnusocial
|
||||
fi
|
||||
|
||||
# start the daemons
|
||||
cd /var/www/${MICROBLOG_DOMAIN_NAME}/htdocs
|
||||
scripts/startdaemons.sh
|
||||
fi
|
||||
}
|
||||
|
||||
function restore_rss {
|
||||
if [[ $RESTORE_APP != 'all' ]]; then
|
||||
if [[ $RESTORE_APP != 'ttrss' ]]; then
|
||||
|
@ -1098,7 +1074,6 @@ restore_personal_settings
|
|||
restore_mailing_list
|
||||
restore_email
|
||||
|
||||
restore_gnusocial
|
||||
restore_hubzilla
|
||||
restore_rss
|
||||
restore_syncthing
|
||||
|
|
Loading…
Reference in New Issue