]> git.proxmox.com Git - qemu-server.git/blame - gen-vmconf-pod.pl
bump version to 2.0-72
[qemu-server.git] / gen-vmconf-pod.pl
CommitLineData
1e3baf05
DM
1#!/usr/bin/perl -w
2
3package main;
4
5use strict;
6use PVE::Tools;
7use PVE::Cluster;
8use PVE::PodParser;
9use PVE::QemuServer;
10
11my $prop = PVE::QemuServer::json_config_properties();
12my $format = PVE::PodParser::dump_properties($prop);
13
14my $parser = PVE::PodParser->new();
15$parser->{include}->{format} = $format;
16$parser->parse_from_file($0);
17
18exit 0;
19
20__END__
21
22=head1 NAME
23
24vm.conf - Proxmox VE virtual machine (qemu/kvm) configuration files.
25
26=head1 SYNOPSYS
27
28The F</etc/pve/qemu-server/C<VMID>.conf> files stores VM
29configuration, where C<VMID> is the numeric ID of the given VM. Note
30that C<VMID <= 100> are reserved for internal purposes.
31
32=head1 FILE FORMAT
33
34Configuration file use a simple colon separated key/value format. Each
35line has the following format:
36
37 OPTION: value
38
39Blank lines in the file are ignored, and lines starting with a C<#>
40character are treated as comments and are also ignored.
41
42One can use the F<qm> command to generate and modify those files.
43
44=head1 OPTIONS
45
46=include format
47
48=include pve_copyright