Server IP : 195.201.23.43 / Your IP : 18.191.239.71 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/iscsi-server/ |
Upload File : |
#!/usr/bin/perl # Delete multiple devices use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './iscsi-server-lib.pl'; our (%text, %in, %config); my $conf = &get_iscsi_config(); &ReadParse(); &error_setup($text{'devices_derr'}); # Get the devices my @devices; my @d = split(/\0/, $in{'d'}); foreach my $d (@d) { push(@devices, grep { $_->{'type'} eq 'device' && $_->{'num'} eq $d } @$conf); } @devices || &error($text{'devices_denone'}); # Check if in use foreach my $device (@devices) { my @users = &find_extent_users($conf, $device); if (@users) { &error(&text('devices_einuse', $device->{'type'}.$device->{'num'}, join(", ", map { &describe_object($_) } @users))); } } if ($in{'confirm'}) { # Do the deletion &lock_file($config{'targets_file'}); foreach my $device (@devices) { &save_directive($conf, $device, undef); } &unlock_file($config{'targets_file'}); if (@devices == 1) { &webmin_log('delete', 'device', $devices[0]->{'type'}. $devices[0]->{'num'}); } else { &webmin_log('delete', 'devices', scalar(@devices)); } &redirect("list_devices.cgi"); } else { # Ask first &ui_print_header(undef, $text{'devices_title'}, ""); print &ui_confirmation_form( "delete_devices.cgi", &text('devices_drusure', join(" ", map { $_->{'type'}.$_->{'num'} } @devices)), [ map { [ "d", $_ ] } @d ], [ [ 'confirm', $text{'devices_sure'} ] ], ); &ui_print_footer("list_devices.cgi", $text{'devices_return'}); }Private