JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr#!/usr/bin/perl # fsck.cgi # Where the fsck command actually gets run require './fdisk-lib.pl'; &ReadParse(); &can_edit_disk($in{'dev'}) || &error($text{'fsck_ecannot'}); &ui_print_unbuffered_header(undef, $text{'fsck_title'}, ""); $cmd = &fsck_command($in{'type'}, $in{'dev'}); print "",&text('fsck_exec', "$cmd"),"\n"; print "
\n";
&foreign_call("proc", "safe_process_exec_logged",
	      $cmd, 0, 0, STDOUT, undef, 1);
print "
\n"; print "... ",&fsck_error($?/256),"

\n"; &webmin_log("fsck", undef, $in{'dev'}, \%in); &ui_print_footer("", $text{'index_return'});