mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
13 lines
308 B
Perl
Executable File
13 lines
308 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Stop and then re-start the iSCSI server process
|
|
|
|
use strict;
|
|
use warnings;
|
|
require './iscsi-server-lib.pl';
|
|
our (%text);
|
|
&error_setup($text{'restart_err'});
|
|
my $err = &restart_iscsi_server();
|
|
&error("<tt>".&html_escape($err)."</tt>") if ($err);
|
|
&webmin_log("restart");
|
|
&redirect("");
|