RSS reader included within selective local restore

This commit is contained in:
Bob Mottram 2016-02-17 14:48:07 +00:00
parent ee46b57c44
commit 156eb704a7
1 changed files with 5 additions and 3 deletions

View File

@ -932,7 +932,7 @@ function restore_from_usb {
trap "rm -f $data" 0 1 2 5 15
dialog --backtitle $"Freedombone Control Panel" \
--title $"Restore from USB backup" \
--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 \
@ -960,7 +960,8 @@ function restore_from_usb {
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;;
@ -994,7 +995,8 @@ function restore_from_usb {
25) ${PROJECT_NAME}-restore-local $USB_DRIVE email;;
26) ${PROJECT_NAME}-restore-local $USB_DRIVE dlna;;
27) ${PROJECT_NAME}-restore-local $USB_DRIVE voip;;
28) ${PROJECT_NAME}-restore-local $USB_DRIVE tox;;
28) ${PROJECT_NAME}-restore-local $USB_DRIVE ttrss;;
29) ${PROJECT_NAME}-restore-local $USB_DRIVE tox;;
esac
done
any_key