RSS reader included within selective remote restore

This commit is contained in:
Bob Mottram 2016-02-17 14:49:42 +00:00
parent 156eb704a7
commit 662c8b0486
1 changed files with 5 additions and 3 deletions

View File

@ -1011,7 +1011,7 @@ function restore_from_remote {
trap "rm -f $data" 0 1 2 5 15
dialog --backtitle $"Freedombone Control Panel" \
--title $"Restore from ${remote_domain_name}" \
--radiolist $"Choose an application to restore:" 30 70 27 \
--radiolist $"Choose an application to restore:" 31 70 28 \
1 $"Everything" on \
2 $"Return to the backup and restore menu" off \
3 $"Configuration files" off \
@ -1039,7 +1039,8 @@ function restore_from_remote {
25 $"Email" off \
26 $"DLNA" off \
27 $"VoIP" off \
28 $"Tox" off 2> $data
28 $"RSS reader" off \
29 $"Tox" off 2> $data
sel=$?
case $sel in
1) break;;
@ -1073,7 +1074,8 @@ function restore_from_remote {
25) ${PROJECT_NAME}-restore-remote $remote_domain_name email;;
26) ${PROJECT_NAME}-restore-remote $remote_domain_name dlna;;
27) ${PROJECT_NAME}-restore-remote $remote_domain_name voip;;
28) ${PROJECT_NAME}-restore-remote $remote_domain_name tox;;
28) ${PROJECT_NAME}-restore-remote $remote_domain_name ttrss;;
29) ${PROJECT_NAME}-restore-remote $remote_domain_name tox;;
esac
done
any_key