[pve-devel] [PATCH container 5/7] config: replace mentions of "VM" with "container"

Fiona Ebner f.ebner at proxmox.com
Fri Oct 7 14:41:45 CEST 2022


Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
 src/PVE/LXC/Config.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/PVE/LXC/Config.pm b/src/PVE/LXC/Config.pm
index 7be6be1..4b3ccf5 100644
--- a/src/PVE/LXC/Config.pm
+++ b/src/PVE/LXC/Config.pm
@@ -443,13 +443,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'),
@@ -515,14 +515,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,
     },
-- 
2.30.2






More information about the pve-devel mailing list