[ Avaa Bypassed ]




Upload:

Command:

www-data@52.15.174.159: ~ $
#!/usr/bin/perl
# save_vg.cgi
# Create, update or delete a volume group

require './lvm-lib.pl';
&ReadParse();

if ($in{'vg'}) {
	($vg) = grep { $_->{'name'} eq $in{'vg'} } &list_volume_groups();
	$vg || &error($text{'vg_egone'});
	}

if ($in{'confirm'}) {
	# Delete the volume group
	&error_setup($text{'vg_err2'});
	$err = &delete_volume_group($vg);
	&error("<pre>$err</pre>") if ($err);
	&webmin_log("delete", "vg", $in{'vg'}, $vg);
	&redirect("");
	}
elsif ($in{'delete'}) {
	# Ask the user if he is sure
	&ui_print_header(undef, $text{'vg_delete'}, "");
	@lvs = &list_logical_volumes($in{'vg'});
	if (@lvs) {
		print "<p><b>",&text('vg_cannot', scalar(@lvs)),"</b> <p>\n";
		}
	else {
		print "<center>\n";
		print &ui_form_start("save_vg.cgi");
		print &ui_hidden("vg", $in{'vg'});
		print "<b>",&text('vg_rusure', $vg->{'name'}),"</b><p>\n";
		print &ui_form_end([ [ 'confirm', $text{'vg_deleteok'} ] ]);
		print "</center>\n";
		}
	&ui_print_footer("", $text{'index_return'});
	}
else {
	&error_setup($text{'vg_err'});
	$in{'name'} =~ /^[A-Za-z0-9\.\-\_]+$/ || &error($text{'vg_ename'});
	if (!$in{'vg'}) {
		# Add the volume group
		$vg = { 'name' => $in{'name'} };
		local $device;
		if ($in{'device'}) {
			$device = $in{'device'};
			}
		else {
			-r $in{'other'} || &error($text{'pv_eother'});
			$device = $in{'other'};
			}
		if (!$in{'pesize_def'}) {
			$in{'pesize'} =~ /^\d+$/ || &error($text{'vg_epesize'});
			$vg->{'pe_size'} = $in{'pesize'};
			}
		$err = &create_volume_group($vg, $device);
		&error("<pre>$err</pre>") if ($err);
		&webmin_log("create", "vg", $in{'name'}, $vg);
		}
	else {
		# Rename the volume group
		if ($vg->{'name'} ne $in{'name'}) {
			$err = &rename_volume_group($vg, $in{'name'});
			&error("<pre>$err</pre>") if ($err);
			$vg->{'name'} = $in{'name'};
			}
		&webmin_log("modify", "vg", $in{'vg'}, $vg);
		}
	&redirect("index.cgi?mode=vgs");
	}


Filemanager

Name Type Size Permission Actions
images Folder 0755
lang Folder 0755
CHANGELOG File 3.07 KB 0644
backup_config.pl File 599 B 0744
cgi_args.pl File 756 B 0755
config File 40 B 0644
config.info File 98 B 0644
config.info.ca File 118 B 0644
config.info.de File 110 B 0644
config.info.fr File 123 B 0644
config.info.ms File 66 B 0644
config.info.nl File 63 B 0644
config.info.no File 58 B 0644
edit_lv.cgi File 10.44 KB 0755
edit_pv.cgi File 2.48 KB 0755
edit_vg.cgi File 1.5 KB 0755
feedback_files.pl File 155 B 0755
index.cgi File 7.42 KB 0755
init.cgi File 448 B 0755
install_check.pl File 517 B 0755
log_parser.pl File 585 B 0755
lvm-lib.pl File 26.52 KB 0755
mkfs.cgi File 773 B 0755
mkfs_form.cgi File 715 B 0755
module.info File 203 B 0644
module.info.af File 0 B 0644
module.info.af.auto File 128 B 0644
module.info.ar File 0 B 0644
module.info.ar.auto File 253 B 0644
module.info.be File 0 B 0644
module.info.be.auto File 203 B 0644
module.info.bg File 0 B 0644
module.info.bg.auto File 248 B 0644
module.info.ca File 123 B 0644
module.info.ca.auto File 12 B 0644
module.info.cs File 35 B 0644
module.info.cs.auto File 107 B 0644
module.info.da File 0 B 0644
module.info.da.auto File 135 B 0644
module.info.de File 125 B 0644
module.info.de.auto File 12 B 0644
module.info.el File 0 B 0644
module.info.el.auto File 233 B 0644
module.info.es File 37 B 0644
module.info.es.auto File 114 B 0644
module.info.eu File 0 B 0644
module.info.eu.auto File 134 B 0644
module.info.fa File 0 B 0644
module.info.fa.auto File 167 B 0644
module.info.fi File 0 B 0644
module.info.fi.auto File 143 B 0644
module.info.fr File 0 B 0644
module.info.fr.auto File 155 B 0644
module.info.he File 0 B 0644
module.info.he.auto File 180 B 0644
module.info.hr File 0 B 0644
module.info.hr.auto File 144 B 0644
module.info.hu File 0 B 0644
module.info.hu.auto File 159 B 0644
module.info.it File 0 B 0644
module.info.it.auto File 134 B 0644
module.info.ja File 0 B 0644
module.info.ja.auto File 178 B 0644
module.info.ko File 0 B 0644
module.info.ko.auto File 143 B 0644
module.info.lt File 0 B 0644
module.info.lt.auto File 131 B 0644
module.info.lv File 0 B 0644
module.info.lv.auto File 142 B 0644
module.info.ms File 130 B 0644
module.info.ms.auto File 12 B 0644
module.info.mt File 0 B 0644
module.info.mt.auto File 142 B 0644
module.info.nl File 34 B 0644
module.info.nl.auto File 104 B 0644
module.info.no File 36 B 0644
module.info.no.auto File 99 B 0644
module.info.pl File 0 B 0644
module.info.pl.auto File 150 B 0644
module.info.pt File 0 B 0644
module.info.pt.auto File 145 B 0644
module.info.pt_BR File 0 B 0644
module.info.pt_BR.auto File 154 B 0644
module.info.ro File 0 B 0644
module.info.ro.auto File 143 B 0644
module.info.ru File 65 B 0644
module.info.ru.auto File 149 B 0644
module.info.sk File 0 B 0644
module.info.sk.auto File 147 B 0644
module.info.sl File 0 B 0644
module.info.sl.auto File 149 B 0644
module.info.sv File 0 B 0644
module.info.sv.auto File 132 B 0644
module.info.th File 0 B 0644
module.info.th.auto File 272 B 0644
module.info.tr File 0 B 0644
module.info.tr.auto File 155 B 0644
module.info.uk File 0 B 0644
module.info.uk.auto File 213 B 0644
module.info.ur File 0 B 0644
module.info.ur.auto File 188 B 0644
module.info.vi File 0 B 0644
module.info.vi.auto File 176 B 0644
module.info.zh File 0 B 0644
module.info.zh.auto File 100 B 0644
module.info.zh_TW File 30 B 0644
module.info.zh_TW.auto File 82 B 0644
prefs.info File 18 B 0644
pvmove.cgi File 923 B 0755
raid_create.cgi File 2.85 KB 0755
raid_form.cgi File 2.3 KB 0755
save_lv.cgi File 7.47 KB 0755
save_pv.cgi File 1.95 KB 0755
save_vg.cgi File 1.85 KB 0755
thin_create.cgi File 913 B 0755
thin_form.cgi File 1.13 KB 0755