rename vm_deviceadd to vm_deviceplug, and vm_devicedel to vm_deviceunplug

Signed-off-by: Derumier Alexandre <aderumier@odiso.com>
This commit is contained in:
Derumier Alexandre 2012-01-20 11:42:03 +01:00 committed by Dietmar Maurer
parent 69b6ae0ce3
commit ec21aa112d
2 changed files with 4 additions and 4 deletions

View File

@ -533,7 +533,7 @@ __PACKAGE__->register_method({
}
next if !defined($conf->{$opt});
if (PVE::QemuServer::valid_drivename($opt)) {
PVE::QemuServer::vm_devicedel($vmid, $conf, $opt);
PVE::QemuServer::vm_deviceunplug($vmid, $conf, $opt);
my $drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt});
if (PVE::QemuServer::drive_is_cdrom($drive)) {
$cdchange->{$opt} = undef;

View File

@ -1290,7 +1290,7 @@ sub create_disks {
die "image '$path' does not exists\n";
}
}
PVE::QemuServer::vm_deviceadd($storecfg, $conf, $vmid, $ds, $disk) if defined($conf);
PVE::QemuServer::vm_deviceplug($storecfg, $conf, $vmid, $ds, $disk) if defined($conf);
});
};
@ -2282,7 +2282,7 @@ sub vm_devices_list {
return $devices;
}
sub vm_deviceadd {
sub vm_deviceplug {
my ($storecfg, $conf, $vmid, $deviceid, $device) = @_;
return if !check_running($vmid) || !$conf->{hotplug} || $conf->{$deviceid};
@ -2311,7 +2311,7 @@ sub vm_deviceadd {
die "error on hotplug device $deviceid";
}
sub vm_devicedel {
sub vm_deviceunplug {
my ($vmid, $conf, $deviceid) = @_;
return if !check_running ($vmid) || !$conf->{hotplug};