fix typos in user-visible strings

This includes docs, and strings printed to stderr or stdout.

These were caught with:

    typos --exclude test --exclude changelog

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
This commit is contained in:
Maximiliano Sandoval 2024-10-08 17:14:08 +02:00 committed by Fiona Ebner
parent 812d22ee21
commit be8c868f0c
7 changed files with 21 additions and 21 deletions

View File

@ -801,7 +801,7 @@ __PACKAGE__->register_method({
method => 'GET',
description => "Virtual machine index (per node).",
permissions => {
description => "Only list VMs where you have VM.Audit permissons on /vms/<vmid>.",
description => "Only list VMs where you have VM.Audit permissions on /vms/<vmid>.",
user => 'all',
},
proxyto => 'node',
@ -1795,7 +1795,7 @@ my $update_vm_api = sub {
my $conf = PVE::QemuConfig->load_config($vmid);
die "checksum missmatch (file change by other user?)\n"
die "checksum mismatch (file change by other user?)\n"
if $digest && $digest ne $conf->{digest};
&$check_cpu_model_access($rpcenv, $authuser, $param, $conf);
@ -2133,7 +2133,7 @@ __PACKAGE__->register_method({
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Set virtual machine options (asynchrounous API).",
description => "Set virtual machine options (asynchronous API).",
permissions => {
check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
},
@ -2190,7 +2190,7 @@ __PACKAGE__->register_method({
method => 'PUT',
protected => 1,
proxyto => 'node',
description => "Set virtual machine options (synchrounous API) - You should consider using the POST method instead for any actions involving hotplug or storage allocation.",
description => "Set virtual machine options (synchronous API) - You should consider using the POST method instead for any actions involving hotplug or storage allocation.",
permissions => {
check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
},
@ -4488,11 +4488,11 @@ __PACKAGE__->register_method({
not_allowed_nodes => {
type => 'object',
optional => 1,
description => "List not allowed nodes with additional informations, only passed if VM is offline"
description => "List not allowed nodes with additional information, only passed if VM is offline"
},
local_disks => {
type => 'array',
description => "List local disks including CD-Rom, unsused and not referenced disks"
description => "List local disks including CD-Rom, unused and not referenced disks"
},
local_resources => {
type => 'array',
@ -5018,7 +5018,7 @@ __PACKAGE__->register_method({
my $conf = PVE::QemuConfig->load_config($vmid);
die "checksum missmatch (file change by other user?)\n"
die "checksum mismatch (file change by other user?)\n"
if $digest && $digest ne $conf->{digest};
PVE::QemuConfig->check_lock($conf) if !$skiplock;

View File

@ -471,7 +471,7 @@ __PACKAGE__->register_method ({
my $pid = PVE::QemuServer::check_running ($vmid);
return if !$pid;
print "waiting until VM $vmid stopps (PID $pid)\n";
print "waiting until VM $vmid stops (PID $pid)\n";
my $count = 0;
while ((!$timeout || ($count < $timeout)) && PVE::QemuServer::check_running ($vmid)) {
@ -807,7 +807,7 @@ __PACKAGE__->register_method({
type => 'boolean',
optional => 1,
default => 1,
description => "If set to off, returns the pid immediately instead of waiting for the commmand to finish or the timeout.",
description => "If set to off, returns the pid immediately instead of waiting for the command to finish or the timeout.",
},
'timeout' => {
type => 'integer',

View File

@ -401,7 +401,7 @@ sub mux_input {
my $obj = from_json($jsons[0]);
my $cmdid = $obj->{'return'};
die "received responsed without command id\n" if !$cmdid;
die "received response without command id\n" if !$cmdid;
# skip results fro previous commands
return if $cmdid < $curcmd->{id};
@ -440,7 +440,7 @@ sub mux_input {
}
my $cmdid = $obj->{id};
die "received responsed without command id\n" if !$cmdid;
die "received response without command id\n" if !$cmdid;
if ($curcmd->{id} ne $cmdid) {
die "got wrong command id '$cmdid' (expected $curcmd->{id})\n";
@ -495,7 +495,7 @@ sub mux_eof {
my $obj = from_json($raw);
my $cmdid = $obj->{'return'};
die "received responsed without command id\n" if !$cmdid;
die "received response without command id\n" if !$cmdid;
delete $queue_info->{current};

View File

@ -889,7 +889,7 @@ __EOD__
my $net_fmt = {
macaddr => get_standard_option('mac-addr', {
description => "MAC address. That address must be unique withing your network. This is"
description => "MAC address. That address must be unique within your network. This is"
." automatically generated if not specified.",
}),
model => {
@ -3100,7 +3100,7 @@ sub audio_devs {
push @$devs, '-device', "hda-micro,id=${id}-codec0,bus=${id}.0,cad=0$audiodev";
push @$devs, '-device', "hda-duplex,id=${id}-codec1,bus=${id}.0,cad=1$audiodev";
} else {
die "unkown audio device '$audio->{dev}', implement me!";
die "unknown audio device '$audio->{dev}', implement me!";
}
push @$devs, '-audiodev', "$audio->{backend},id=$audio->{backend_id}";
@ -6600,7 +6600,7 @@ sub tar_restore_cleanup {
} else {
PVE::Storage::vdisk_free($storecfg, $volid);
}
print STDERR "temporary volume '$volid' sucessfuly removed\n";
print STDERR "temporary volume '$volid' successfully removed\n";
};
print STDERR "unable to cleanup '$volid' - $@" if $@;
} else {
@ -6875,7 +6875,7 @@ my $restore_destroy_volumes = sub {
my $volid = $dev->{volid} or next;
eval {
PVE::Storage::vdisk_free($storecfg, $volid);
print STDERR "temporary volume '$volid' sucessfuly removed\n";
print STDERR "temporary volume '$volid' successfully removed\n";
};
print STDERR "unable to cleanup '$volid' - $@" if $@;
}
@ -7829,7 +7829,7 @@ sub convert_iscsi_path {
"file.portal=$portal,file.target=$target,file.lun=$lun,driver=raw";
}
die "cannot convert iscsi path '$path', unkown format\n";
die "cannot convert iscsi path '$path', unknown format\n";
}
sub qemu_img_convert {

View File

@ -167,7 +167,7 @@ sub parse_ovf {
$disk_section_path = $1;
$disk_id = $2;
} else {
warn "invalid host ressource $host_resource, skipping\n";
warn "invalid host resource $host_resource, skipping\n";
next;
}
printf "disk section path: $disk_section_path and disk id: $disk_id\n" if $debug;
@ -181,7 +181,7 @@ ovf:Disk[\@ovf:diskId='%s']/\@ovf:fileRef", $disk_id);
my $valid_url_chars = qr@${valid_uripath_chars}|/@;
if (!$fileref || $fileref !~ m/^${valid_url_chars}+$/) {
warn "invalid host ressource $host_resource, skipping\n";
warn "invalid host resource $host_resource, skipping\n";
next;
}

View File

@ -33,7 +33,7 @@ of PCI virtual functions of the host. HOSTPCIID syntax is:
'bus:dev.func' (hexadecimal numbers)
You can us the 'lspci' command to list existing PCI devices.
You can use the 'lspci' command to list existing PCI devices.
Either this or the 'mapping' key must be set.
EODESCR

View File

@ -33,7 +33,7 @@ my $usb_fmt = {
The Host USB device or port or the value 'spice'. HOSTUSBDEVICE syntax is:
'bus-port(.port)*' (decimal numbers) or
'vendor_id:product_id' (hexadeciaml numbers) or
'vendor_id:product_id' (hexadecimal numbers) or
'spice'
You can use the 'lsusb -t' command to list existing usb devices.