From: Dietmar Maurer Date: Sat, 9 Apr 2016 07:35:42 +0000 (+0200) Subject: rename vm.conf to qm.conf X-Git-Url: https://git.proxmox.com/?p=pve-docs.git;a=commitdiff_plain;h=4d173e35c7beda1544cbf7221d70ab2d5cd50e38 rename vm.conf to qm.conf --- diff --git a/Makefile b/Makefile index 4d72493..1508251 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ DEB_SOURCES= \ pve-firewall.adoc \ qm.adoc \ qmrestore.adoc \ - vm.conf.adoc \ + qm.conf.adoc \ pct.adoc \ pct.conf.adoc \ datacenter.cfg.adoc \ diff --git a/gen-qm.conf.5-opts.pl b/gen-qm.conf.5-opts.pl new file mode 100755 index 0000000..cb62d13 --- /dev/null +++ b/gen-qm.conf.5-opts.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +use lib '.'; +use strict; +use warnings; +use PVE::RESTHandler; +use PVE::QemuServer; + +my $prop = PVE::QemuServer::json_config_properties(); + +print PVE::RESTHandler::dump_properties($prop); diff --git a/gen-vm.conf.5-opts.pl b/gen-vm.conf.5-opts.pl deleted file mode 100755 index cb62d13..0000000 --- a/gen-vm.conf.5-opts.pl +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/perl - -use lib '.'; -use strict; -use warnings; -use PVE::RESTHandler; -use PVE::QemuServer; - -my $prop = PVE::QemuServer::json_config_properties(); - -print PVE::RESTHandler::dump_properties($prop); diff --git a/qm.conf.adoc b/qm.conf.adoc new file mode 100644 index 0000000..5c098c5 --- /dev/null +++ b/qm.conf.adoc @@ -0,0 +1,55 @@ +ifdef::manvolnum[] +PVE({manvolnum}) +================ +include::attributes.txt[] + +NAME +---- + +qm.conf - Proxmox VE Virtual Machine Configuration + + +SYNOPSYS +-------- + +'/etc/pve/qemu-server/.conf' + + +DESCRIPTION +----------- +endif::manvolnum[] + +ifndef::manvolnum[] + Virtual Machine Configuration +============================== +include::attributes.txt[] +endif::manvolnum[] + +The '/etc/pve/qemu-server/.conf' files stores VM configuration, +where "VMID" is the numeric ID of the given VM. Note that IDs <= +100 are reserved for internal purposes. + + +File Format +----------- + +The file uses a simple colon separated key/value format. Each line has +the following format: + + OPTION: value + +Blank lines in the file are ignored, and lines starting with a '#' +character are treated as comments and are also ignored. + +One can use the 'qm' command to generate and modify those files. + + +Options +------- + +include::qm.conf.5-opts.adoc[] + + +ifdef::manvolnum[] +include::pve-copyright.adoc[] +endif::manvolnum[] diff --git a/vm.conf.adoc b/vm.conf.adoc deleted file mode 100644 index a6ebaaf..0000000 --- a/vm.conf.adoc +++ /dev/null @@ -1,55 +0,0 @@ -ifdef::manvolnum[] -PVE({manvolnum}) -================ -include::attributes.txt[] - -NAME ----- - -vm.conf - Proxmox VE Virtual Machine Configuration - - -SYNOPSYS --------- - -'/etc/pve/qemu-server/.conf' - - -DESCRIPTION ------------ -endif::manvolnum[] - -ifndef::manvolnum[] - Virtual Machine Configuration -============================== -include::attributes.txt[] -endif::manvolnum[] - -The '/etc/pve/qemu-server/.conf' files stores VM configuration, -where "VMID" is the numeric ID of the given VM. Note that IDs <= -100 are reserved for internal purposes. - - -File Format ------------ - -The file uses a simple colon separated key/value format. Each line has -the following format: - - OPTION: value - -Blank lines in the file are ignored, and lines starting with a '#' -character are treated as comments and are also ignored. - -One can use the 'qm' command to generate and modify those files. - - -Options -------- - -include::vm.conf.5-opts.adoc[] - - -ifdef::manvolnum[] -include::pve-copyright.adoc[] -endif::manvolnum[]