Handle hostnames with upper-case letters
[webmin.git] / net / save_routes.cgi
1 #!/usr/local/bin/perl
2 # save_routes.cgi
3 # Save boot-time routing configuration
4
5 require './net-lib.pl';
6 $access{'routes'} == 2 || &error($text{'routes_ecannot'});
7 &ReadParse();
8 &error_setup($text{'routes_err'});
9 &parse_routing();
10 &webmin_log("routes", undef, undef, \%in);
11 &redirect("");
12