#!/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"; &ui_print_footer("", $text{'index_return'});