#!/usr/local/bin/perl # restore_form.cgi # Display a form with restore options require './fsdump-lib.pl'; &ReadParse(); $access{'restore'} || &error($text{'restore_ecannot'}); &ui_print_header(undef, $text{'restore_title'}, "", "restore"); $m = &missing_restore_command($in{'fs'}) if ($in{'fs'} ne 'tar'); if ($m) { print "

",&text('restore_ecommand', "$m", uc($in{'fs'})), "

\n"; &ui_print_footer("/", $text{'index'}); exit; } if ($in{'id'}) { # Restoring a specific dump $dump = &get_dump($in{'id'}); } print "$text{'restore_desc'}

\n"; print "

\n"; print "\n"; print "\n"; print "\n"; print "
",$in{'fs'} eq 'tar' ? $text{'restore_theader'} : &text('restore_header', uc($in{'fs'})),"
\n"; &restore_form($in{'fs'}, $dump); if ($access{'extra'}) { print "\n"; print "\n"; } print "
",&hlink($text{'restore_extra'}, "rextra"),"
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});