]> git.proxmox.com Git - pve-container.git/blobdiff - src/PVE/LXC/Config.pm
config: replace mentions of "VM" with "container"
[pve-container.git] / src / PVE / LXC / Config.pm
index 2736fec239390f6f074a171d55c0c39c70e973a6..8f48932b9d38672e258e8a5fe60746bf79f55a77 100644 (file)
@@ -446,13 +446,13 @@ my $confdesc = {
     lock => {
        optional => 1,
        type => 'string',
-       description => "Lock/unlock the VM.",
+       description => "Lock/unlock the container.",
        enum => [qw(backup create destroyed disk fstrim migrate mounted rollback snapshot snapshot-delete)],
     },
     onboot => {
        optional => 1,
        type => 'boolean',
-       description => "Specifies whether a VM will be started during system bootup.",
+       description => "Specifies whether a container will be started during system bootup.",
        default => 0,
     },
     startup => get_standard_option('pve-startup-order'),
@@ -518,14 +518,14 @@ my $confdesc = {
     memory => {
        optional => 1,
        type => 'integer',
-       description => "Amount of RAM for the VM in MB.",
+       description => "Amount of RAM for the container in MB.",
        minimum => 16,
        default => 512,
     },
     swap => {
        optional => 1,
        type => 'integer',
-       description => "Amount of SWAP for the VM in MB.",
+       description => "Amount of SWAP for the container in MB.",
        minimum => 0,
        default => 512,
     },