mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
12 lines
212 B
Perl
Executable File
12 lines
212 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# apply.cgi
|
|
# Apply the current network config
|
|
|
|
require './net-lib.pl';
|
|
$access{'apply'} || &error($text{'apply_ecannot'});
|
|
&apply_network();
|
|
sleep(1);
|
|
&webmin_log("apply");
|
|
&redirect("");
|
|
|