]> git.proxmox.com Git - pve-docs.git/blob - gen-pct-mountpoint-opts.pl
vrf : remove net.ipv4.tcp_l3mdev_accept=1 sysctl tuning
[pve-docs.git] / gen-pct-mountpoint-opts.pl
1 #!/usr/bin/perl
2
3 use lib '.';
4 use strict;
5 use warnings;
6 use PVE::RESTHandler;
7 use PVE::LXC::Config;
8 use PVE::JSONSchema;
9
10 my $prop = PVE::LXC::Config->json_config_properties();
11
12 my $rootfs_prop = $prop->{rootfs};
13
14 my $mp_prop = $prop->{mp0};
15
16 my $typetext = PVE::JSONSchema::schema_get_type_text($rootfs_prop);
17
18 print "`rootfs`: `$typetext` ::\n\n";
19
20 print $rootfs_prop->{description} .
21 " See below for a detailed description of all options.\n\n";
22
23 $typetext = PVE::JSONSchema::schema_get_type_text($mp_prop);
24
25 print "`mp[n]`: `$typetext` ::\n\n";
26 print $mp_prop->{description} . "\n\n";
27
28 print PVE::RESTHandler::dump_properties($mp_prop->{format}, 'asciidoc', 'config-sub');