Handle hostnames with upper-case letters
[webmin.git] / fdisk / reboot.cgi
1 #!/usr/local/bin/perl
2 # reboot.cgi
3 # Reboot the system after changing partitions
4
5 require './fdisk-lib.pl';
6 &ui_print_header(undef, $text{'reboot_title'}, "");
7 print &ui_subheading($text{'reboot_msg'});
8 &ui_print_footer("", $text{'index_return'});
9 system("reboot");
10