mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
13 lines
289 B
Perl
Executable File
13 lines
289 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# save_routes.cgi
|
|
# Save boot-time routing configuration
|
|
|
|
require './net-lib.pl';
|
|
$access{'routes'} == 2 || &error($text{'routes_ecannot'});
|
|
&ReadParse();
|
|
&error_setup($text{'routes_err'});
|
|
&parse_routing();
|
|
&webmin_log("routes", undef, undef, \%in);
|
|
&redirect("");
|
|
|