mirror of
https://github.com/webmin/webmin.git
synced 2025-08-15 21:20:10 +00:00
13 lines
277 B
Perl
Executable File
13 lines
277 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Shut down firewalld
|
|
|
|
use strict;
|
|
use warnings;
|
|
require './firewalld-lib.pl';
|
|
our (%text, %in);
|
|
&error_setup($text{'stop_err'});
|
|
my $err = &stop_firewalld();
|
|
&error($err) if ($err);
|
|
&webmin_log("stop");
|
|
&redirect("index.cgi?zone=".&urlize($in{'zone'}));
|