#!/usr/bin/perl

use strict;
use warnings;
use Getopt::Long;
use File::Path;
use File::Basename;
use IO::File;
use Cwd;

use JSON;

my $verbose;
my $keep_artifacts;

my $release = '6.3';

my $clicmd = shift or
    die "no command specified\n";

my $data_str = "";
while (<main::DATA>) { $data_str .= $_; }

my $fileinfo = decode_json($data_str);

my $tmpprefix = '.asciidoc-pve-tmp'.$$.'_';

my $adoc_source_dir = "/usr/share/pve-doc-generator";

# inside pve-docs source dir?
if (-f "asciidoc-pve.in" && -f "pve-admin-guide.adoc") {
    $adoc_source_dir = getcwd();
}

my $prepared_files = {};

my $man_target = 'man';
my $env_stack = [];
my $env_skip = 0;

my $online_help_links = {
    'pve_service_daemons' => {
	link => '/pve-docs/index.html#_service_daemons',
	title => 'Service Daemons',
    },
    'pve_documentation_index' => {
	link => '/pve-docs/index.html',
	title => 'Proxmox VE Documentation Index',
    },
    'pve_admin_guide' => {
	link => '/pve-docs/pve-admin-guide.html',
	title => 'Proxmox VE Administration Guide',
    },
};

sub debug {
    my $msg = shift;

    return if !$verbose;

    print STDERR "asciidoc-pve: $msg\n";
}

sub push_environment {
    my ($env, $skip) = @_;

    $skip = 1 if $env_skip;
    $skip = 0 if !defined($skip);

    push @$env_stack, [$env, $skip];

    $env_skip = $skip;
}

sub pop_environment {
    my ($env) = @_;

    my $last_stack_entry = pop @$env_stack;
    die "unable to pop env '$env'" if !defined($last_stack_entry);

    my ($last_env, $skip) = @$last_stack_entry;
    die "environment missmatch (${last_env} != $env)\n" if $last_env ne $env;

    if (!scalar(@$env_stack)) {
	$env_skip = 0;
    } else {
	my (undef, $skip) = @{$env_stack->[-1]};
	$env_skip = $skip;
    }
}

my $files_for_cleanup = [];

sub cleanup {

    return if $keep_artifacts;

    foreach my $file (@$files_for_cleanup) {
	unlink $file;
    }
}

sub replace_wiki_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{wiki}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{wiki}->{$blockid};

    die "unable to resolve wiki link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for wiki link '$blockid'\n" if !$text;

    return "$link\[$text\]";
}

sub replace_default_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{default}->{$blockid};

    die "unable to resolve chapter link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for chapter link '$blockid'\n" if !$text;

    return "$link\[$text\]";
}

sub replace_man_xref {
    my ($blockid, $text) = @_;

    my $link = $fileinfo->{blockid_target}->{manvolnum}->{$blockid};
    my $reftext = $fileinfo->{reftext}->{manvolnum}->{$blockid};

    die "unable to resolve man page link (xref:$blockid)\n"
	if !defined($link);

    $text = $reftext if !length($text);

    die "xref: no text for man page link '$blockid'\n" if !$text;

    my $section = $fileinfo->{mansection}->{manvolnum}->{$link};
    if (!defined($section)) {
	warn "link '$blockid' target '$link' is not a manual page, ignoring\n";
	return "$text";
    }


    if ($man_target eq 'html') {
	my $target = $link;
	$target =~ s/\.adoc//;
	$target .= ".$section";
	return "link:${target}.html#${blockid}\[$text\]";
    } elsif ($man_target eq 'man') {
	my $command = $link;
	$command =~ s/\.adoc//;
	return "\*${text}\* (man \*${command}\*($section))";
    } else {
	die "internal error"
    }
}

sub replace_xref {
    my ($env, $blockid, $text) = @_;

    if ($env eq 'wiki') {
	return replace_wiki_xref($blockid, $text);
    } elsif ($env eq 'manvolnum') {
	if (($man_target eq 'man') || ($man_target eq 'html')) {
	    return replace_man_xref($blockid, $text);
	} elsif ($man_target eq 'wiki') {
	    return replace_wiki_xref($blockid, $text);
	} else {
	    die "internal error"
	}
    } elsif ($env eq 'default') {
	return replace_default_xref($blockid, $text);
    } else {
	die "internal error";
    }
}

sub prepare_adoc_file {
    my ($target_env, $filename, $attributes) = @_;

    return $prepared_files->{$filename} if defined($prepared_files->{$filename});

    debug("prepare $filename");

    my $dirname = dirname($filename);
    my $basename = basename($filename);

    my $outfilename = "$dirname/${tmpprefix}$basename";

    $prepared_files->{$filename} = $outfilename;

    my $fh = IO::File->new("$filename", "r") or
	die "unable to open file '$filename' - $!\n";

    my $outfh = IO::File->new("$outfilename", "w") or
	die "unable to open temporary file '$outfilename'\n";

    push @$files_for_cleanup, $outfilename;

    while (defined (my $line = <$fh>)) {
	chomp $line;
	if ($line =~ m/^if(n?)def::(\S+)\[(.*)\]\s*$/) {
	    my ($not, $env, $text) = ($1, $2, $3);
	    die "unsuported ifdef usage - implement me" if $text;

	    my $skip = !exists($attributes->{$env}) ? 1 : 0;
	    $skip = ($skip ? 0 : 1 ) if $not;

	    push_environment($env, $skip);
	    next;
	} elsif ($line =~ m/^endif::(\S+)\[(.*)\]\s*$/) {
	    my ($env, $text) = ($1, $2);
	    die "unsuported ifdef usage - implement me" if $text;
	    pop_environment($env);
	    next;
	}

	next if $env_skip;

	if ($line =~ m/^include::(\S+)(\[.*\]\s*)$/) {
	    my ($fn, $rest) = ($1, $2);
	    debug("include $fn");
	    my $new_fn = prepare_adoc_file($target_env, $fn, $attributes);

	    print $outfh "include::${new_fn}$rest\n";
	    next;
	}

	if ($line =~ m/xref:\S+?\[[^\]]*$/) {
	    die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
	}
	if ($line =~ m/<<((?!\>\>).)*$/) {
	    die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
	}
	# fix xrefs
	$line =~ s/xref:([^\s\[\]]+)\[([^\]]*)\]/replace_xref(${target_env},$1,$2)/ge;

	$line =~ s/<<([^\s,\[\]]+)(?:,(.*?))?>>/replace_xref(${target_env},$1,$2)/ge;

	print $outfh $line . "\n";
    }

    return $outfilename;
}

sub compile_asciidoc {
    my ($env) = @_;

    my $outfile;

    GetOptions ("outfile=s" => \$outfile,
		"keep-artifacts" => \$keep_artifacts,
		"verbose"   => \$verbose) or
		    die("Error in command line arguments\n");

    my $infile = shift(@ARGV) or
	die "no input file specified\n";

    scalar(@ARGV) == 0 or
	die "too many arguments...\n";

    my $outfilemap = $fileinfo->{outfile}->{$env}->{$infile} ||
	die "no output file mapping for '$infile' ($env)";

    if ($man_target eq 'html') {
	$outfilemap .= '.html';
    } elsif ($man_target eq 'wiki') {
	$outfilemap .= '-plain.html';
    }

    if (defined($outfile)) {
	die "wrong output file name '$outfile != $outfilemap' ($env)"
	    if $outfile ne $outfilemap;
    } else {
	$outfile = $outfilemap;
    }

    defined($fileinfo->{titles}->{$env}) ||
	die "unknown environment '$env'";

    my $title = $fileinfo->{titles}->{$env}->{$infile} or
	die "unable to get title for '$infile'$env\n";

    debug("compile $title");

    my $leveloffset = 0;

    my $doctype = $fileinfo->{doctype}->{$env}->{$infile};

    die "unable to get document type for '$infile'\n"
	if !defined($doctype);

    $leveloffset = - $doctype;

    my $date;
    if (defined($ENV{SOURCE_DATE_EPOCH})) {
	$date = `date -d "\@$ENV{SOURCE_DATE_EPOCH}"`;
    } else {
	$date = `date`;
    }
    chomp $date;

    my $attributes = {
	$env => undef,
	leveloffset => $leveloffset,
	revnumber => $release,
	revdate => $date,
	'footer-style' => 'revdate',
    };

    my $mansection = $fileinfo->{mansection}->{$env}->{$infile};

    if ($env eq 'wiki') {
    } elsif ($env eq 'manvolnum') {
	die "undefined man section" if !defined($mansection);
	$attributes->{manvolnum} = $mansection;
    } elsif ($env eq 'default') {
	die "$infile: wrong doctype\n" if $doctype != 0;
	$attributes->{toc2} = undef;
    }

    if (!defined($outfile)) {
	$outfile = $infile;
	$outfile =~ s/\.adoc$//;
	if ($env eq 'manvolnum') {
	    if (($man_target eq 'html') || ($man_target eq 'wiki')) {
		$outfile .= ".$mansection.html";
	    } else {
		$outfile .= ".$mansection";
	    }
	} else {
	    $outfile .= ".html";
	}
    }

    if (($env eq 'manvolnum') && ($man_target eq 'man')) {

	# asciidoc /etc/asciidoc/docbook-xsl/manpage.xsl skip REFERENCES
	# section like footnotes, so we cannot use a2x.
	# We use xmlto instead.

	my $cmd = ['asciidoc', '-dmanpage', '-bdocbook',
		   '-f', "$adoc_source_dir/asciidoc/asciidoc-pve.conf",
		   '-a', 'docinfo1'];

	foreach my $key (keys %$attributes) {
	    my $value = $attributes->{$key};
	    if (defined($value)) {
		push @$cmd, '-a', "$key=$value";
	    } else {
		push @$cmd, '-a', $key;
	    }
	}

	push @$cmd, '--verbose' if $verbose;

	my $tmpxmlfile = "${outfile}.xml.tmp";

	push @$cmd, '--out-file', $tmpxmlfile;

	push @$files_for_cleanup, $tmpxmlfile;

	my $new_infile = prepare_adoc_file($env, $infile, $attributes);

	push @$cmd, $new_infile;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or
	    die "aciidoc error";

	$cmd = ['xmlto', 'man', $tmpxmlfile];

	push @$cmd, '-v' if $verbose;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or
	    die "xmlto error";

    } else {

	$attributes->{icons} = undef;
	$attributes->{'data-uri'} = undef;

	my $cmd = ['asciidoc',
		   '-f', "$adoc_source_dir/asciidoc/asciidoc-pve.conf",
	    ];

	if (($env eq 'wiki') ||
	    (($env eq 'manvolnum') && ($man_target eq 'wiki'))) {

	    push @$cmd, '-b', "$adoc_source_dir/asciidoc/mediawiki";
	} else {
	    push @$cmd, '-b', "$adoc_source_dir/asciidoc/pve-html";
	}

	foreach my $key (keys %$attributes) {
	    my $value = $attributes->{$key};
	    if (defined($value)) {
		push @$cmd, '-a', "$key=$value";
	    } else {
		push @$cmd, '-a', $key;
	    }
	}

	push @$cmd, '--verbose' if $verbose;

	push @$cmd, '--out-file', $outfile;

	my $new_infile = prepare_adoc_file($env, $infile, $attributes);

	push @$cmd, $new_infile;

	debug("run " . join(' ', @$cmd));

	system(@$cmd) == 0 or
	    die "aciidoc error";
    }
}

sub get_links {

    my $data = {};

    foreach my $blockid (sort keys %{$fileinfo->{blockid_target}->{default}}) {
	my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
	my $reftitle = $fileinfo->{reftitle}->{default}->{$blockid};
	my $reftext = $fileinfo->{reftext}->{default}->{$blockid};
	die "internal error" if $link !~ m/^link:/;
	$link =~ s/^link://;

	my $file = $fileinfo->{blockid}->{default}->{$blockid};
	die "internal error - no filename" if ! defined($file);
	my $title =  $fileinfo->{titles}->{default}->{$file} ||
	    die "internal error - no title";

	$data->{$blockid}->{title} = $title;
	$data->{$blockid}->{link} = $link;
	my $subtitle = $reftitle || $reftext;
	$data->{$blockid}->{subtitle} = $subtitle
	    if $subtitle && ($title ne $subtitle);
    }

    return $data;
}

sub scan_extjs_file {
    my ($filename, $res_data) = @_;

    my $fh = IO::File->new($filename, "r") ||
	die "unable to open '$filename' - $!\n";

    debug("scan-extjs $filename");

    while(defined(my $line = <$fh>)) {
	if ($line =~ m/\s+onlineHelp:\s*[\'\"](.*?)[\'\"]/) {
	    my $blockid = $1;
	    my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
	    die "undefined blockid '$blockid' ($filename, line $.)\n"
		if !(defined($link) || defined($online_help_links->{$blockid}));

	    $res_data->{$blockid} = 1;
	}
    }
}

if ($clicmd eq 'compile-wiki') {

    eval { compile_asciidoc('wiki'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-chapter') {

    eval { compile_asciidoc('default'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man-html') {

    $man_target = 'html';

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man-wiki') {

    $man_target = 'wiki';

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'compile-man') {

    eval { compile_asciidoc('manvolnum'); };
    my $err = $@;

    cleanup();

    die $err if $err;

} elsif ($clicmd eq 'print-links') {

    my $outfile;

    GetOptions("outfile=s" => \$outfile,
	       "verbose"   => \$verbose) or
		   die("Error in command line arguments\n");

    scalar(@ARGV) == 0 or
	die "too many arguments...\n";

    my $data = get_links();

    my $res = to_json($data, { pretty => 1,  canonical => 1 } );

    if (defined($outfile)) {
	my $outfh = IO::File->new("$outfile", "w") or
	    die "unable to open temporary file '$outfile'\n";

	print $outfh $res;

    } else {

	print $res;
    }

} elsif ($clicmd eq 'scan-extjs') {

    GetOptions("verbose" => \$verbose) or
	die("Error in command line arguments\n");

    my $link_hash = {};
    my $scanned_files = {};
    while (my $filename = shift) {
	die "got strange file name '$filename'\n"
	    if $filename !~ m/\.js$/;
	next if $scanned_files->{$filename};

	scan_extjs_file($filename, $link_hash);
	$scanned_files->{$filename} = 1;
    }

    my $data = get_links();

    my $res_data = {};

    foreach my $blockid (keys %$link_hash) {
	$res_data->{$blockid} = $data->{$blockid} || $online_help_links->{$blockid} ||
	    die "internal error - no data for '$blockid'";
    }

    my $data_str =  to_json($res_data, { pretty => 1,  canonical => 1 });
    chomp $data_str;

    print "const pveOnlineHelpInfo = ${data_str};\n";

} elsif ($clicmd eq 'chapter-table') {

    print '[width="100%",options="header"]' . "\n";
    print "|====\n";
    print "|Title|Link\n";

    my $filelist = $fileinfo->{outfile}->{default};
    foreach my $sourcefile (sort keys %$filelist) {
	my $target = $filelist->{$sourcefile};
	next if $target eq 'pve-admin-guide.html';
	my $title = $fileinfo->{titles}->{default}->{$sourcefile} ||
	    die "not title for '$sourcefile'";
	print "|$title|link:$target\[\]\n";
    }

    print "|====\n";

} elsif ($clicmd =~ m/^man([158])page-table$/) {

    my $section = $1;
    print '[width="100%",cols="5*d",options="header"]' . "\n";
    print "|====\n";
    print "|Name 3+|Title|Link\n";

    my $filelist = $fileinfo->{outfile}->{manvolnum};
    foreach my $manpage (sort keys %$filelist) {
	next if $section ne $fileinfo->{mansection}->{manvolnum}->{$manpage};
	my $mantitle = $fileinfo->{titles}->{manvolnum}->{$manpage} ||
	    die "not manual title for '$manpage'";
	my $title = $fileinfo->{titles}->{default}->{$manpage} ||
	    die "not title for '$manpage'";

	# hack - remove command name prefix from titles
	$title =~ s/^[a-z]+\s*-\s*//;
	
	my $target = $filelist->{$manpage};
	print "|$mantitle 3+|$title|link:$target.html\[$target\]\n";
    }

    print "|====\n";

} else {

    die "unknown command '$clicmd'\n";

}


exit 0;

__END__
{
   "blockid" : {
      "default" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_main_sdn" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_controller_plugins" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_local_deployment_monitoring" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugins" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "pvesr.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "sysboot_systemd_boot_refresh" : "system-booting.adoc",
         "sysboot_systemd_boot_setup" : "system-booting.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      },
      "manvolnum" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_main_sdn" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_controller_plugins" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_local_deployment_monitoring" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugins" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "pvesr.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "sysboot_systemd_boot_refresh" : "system-booting.adoc",
         "sysboot_systemd_boot_setup" : "system-booting.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      },
      "wiki" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ceph_rados_block_devices" : "pve-storage-rbd.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "hyper-converged-infrastructure.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "local-lvm.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "local-zfs.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "external_metric_server" : "pve-external-metric-server.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "getting_help" : "getting-help.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "howto-improve-pve-docs.adoc",
         "install_minimal_requirements" : "pve-system-requirements.adoc",
         "install_recommended_requirements" : "pve-system-requirements.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation-media.adoc",
         "metric_server_graphite" : "pve-external-metric-server.adoc",
         "metric_server_influxdb" : "pve-external-metric-server.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_main_sdn" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_controller_plugins" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_local_deployment_monitoring" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugins" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "pvesr.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm-cloud-init.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm-pci-passthrough.adoc",
         "qm_pci_passthrough_vm_config" : "qm-pci-passthrough.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "storage_cephfs" : "pve-storage-cephfs.adoc",
         "storage_cephfs_config" : "pve-storage-cephfs.adoc",
         "storage_cifs" : "pve-storage-cifs.adoc",
         "storage_directory" : "pve-storage-dir.adoc",
         "storage_glusterfs" : "pve-storage-glusterfs.adoc",
         "storage_iscsidirect" : "pve-storage-iscsidirect.adoc",
         "storage_lvm" : "pve-storage-lvm.adoc",
         "storage_lvmthin" : "pve-storage-lvmthin.adoc",
         "storage_nfs" : "pve-storage-nfs.adoc",
         "storage_open_iscsi" : "pve-storage-iscsi.adoc",
         "storage_pbs" : "pve-storage-pbs.adoc",
         "storage_pbs_encryption" : "pve-storage-pbs.adoc",
         "storage_rbd_config" : "pve-storage-rbd.adoc",
         "storage_zfspool" : "pve-storage-zfspool.adoc",
         "sysadmin_certificate_management" : "certificate-management.adoc",
         "sysadmin_certs_acme_account" : "certificate-management.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_api_config" : "certificate-management.adoc",
         "sysadmin_certs_acme_dns_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_http_challenge" : "certificate-management.adoc",
         "sysadmin_certs_acme_plugins" : "certificate-management.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "certificate-management.adoc",
         "sysadmin_certs_api_gui" : "certificate-management.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "certificate-management.adoc",
         "sysadmin_certs_upload_custom" : "certificate-management.adoc",
         "sysadmin_enterprise_repo" : "pve-package-repos.adoc",
         "sysadmin_network_configuration" : "pve-network.adoc",
         "sysadmin_no_subscription_repo" : "pve-package-repos.adoc",
         "sysadmin_package_repositories" : "pve-package-repos.adoc",
         "sysadmin_package_repositories_ceph" : "pve-package-repos.adoc",
         "sysadmin_test_repo" : "pve-package-repos.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "local-zfs.adoc",
         "sysadmin_zfs_change_failed_dev" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "local-zfs.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "local-zfs.adoc",
         "sysadmin_zfs_limit_memory_usage" : "local-zfs.adoc",
         "sysadmin_zfs_raid_considerations" : "local-zfs.adoc",
         "sysadmin_zfs_raid_performance" : "local-zfs.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "local-zfs.adoc",
         "sysadmin_zfs_special_device" : "local-zfs.adoc",
         "sysboot" : "system-booting.adoc",
         "sysboot_determine_bootloader_used" : "system-booting.adoc",
         "sysboot_edit_kernel_cmdline" : "system-booting.adoc",
         "sysboot_grub" : "system-booting.adoc",
         "sysboot_installer_part_scheme" : "system-booting.adoc",
         "sysboot_systemd_boot" : "system-booting.adoc",
         "sysboot_systemd_boot_config" : "system-booting.adoc",
         "sysboot_systemd_boot_refresh" : "system-booting.adoc",
         "sysboot_systemd_boot_setup" : "system-booting.adoc",
         "translation" : "translation.adoc",
         "udp" : "pve-external-metric-server.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "local-zfs.adoc",
         "zfs_encryption" : "local-zfs.adoc",
         "zfs_swap" : "local-zfs.adoc"
      }
   },
   "blockid_target" : {
      "default" : {
         "Ahmed15" : "link:/pve-docs/chapter-pve-bibliography.html#Ahmed15",
         "Ahmed16" : "link:/pve-docs/chapter-pve-bibliography.html#Ahmed16",
         "Bessen09" : "link:/pve-docs/chapter-pve-bibliography.html#Bessen09",
         "Bir96" : "link:/pve-docs/chapter-pve-bibliography.html#Bir96",
         "Cheng14" : "link:/pve-docs/chapter-pve-bibliography.html#Cheng14",
         "Goldman16" : "link:/pve-docs/chapter-pve-bibliography.html#Goldman16",
         "Hertzog13" : "link:/pve-docs/chapter-pve-bibliography.html#Hertzog13",
         "Kreibich10" : "link:/pve-docs/chapter-pve-bibliography.html#Kreibich10",
         "Loeliger12" : "link:/pve-docs/chapter-pve-bibliography.html#Loeliger12",
         "Loshin03" : "link:/pve-docs/chapter-pve-bibliography.html#Loshin03",
         "Mauerer08" : "link:/pve-docs/chapter-pve-bibliography.html#Mauerer08",
         "Richardson07" : "link:/pve-docs/chapter-pve-bibliography.html#Richardson07",
         "Singh15" : "link:/pve-docs/chapter-pve-bibliography.html#Singh15",
         "Singh16" : "link:/pve-docs/chapter-pve-bibliography.html#Singh16",
         "Surber16" : "link:/pve-docs/chapter-pve-bibliography.html#Surber16",
         "Walsh10" : "link:/pve-docs/chapter-pve-bibliography.html#Walsh10",
         "advanced_lvm_options" : "link:/pve-docs/chapter-pve-installation.html#advanced_lvm_options",
         "advanced_zfs_options" : "link:/pve-docs/chapter-pve-installation.html#advanced_zfs_options",
         "ceph_rados_block_devices" : "link:/pve-docs/chapter-pvesm.html#ceph_rados_block_devices",
         "chapter_gui" : "link:/pve-docs/chapter-pve-gui.html#chapter_gui",
         "chapter_ha_manager" : "link:/pve-docs/chapter-ha-manager.html#chapter_ha_manager",
         "chapter_hyper_converged_infrastructure" : "link:/pve-docs/pve-admin-guide.html#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/pve-docs/chapter-pve-installation.html#chapter_installation",
         "chapter_lvm" : "link:/pve-docs/chapter-sysadmin.html#chapter_lvm",
         "chapter_pct" : "link:/pve-docs/chapter-pct.html#chapter_pct",
         "chapter_pmxcfs" : "link:/pve-docs/chapter-pmxcfs.html#chapter_pmxcfs",
         "chapter_pve_firewall" : "link:/pve-docs/chapter-pve-firewall.html#chapter_pve_firewall",
         "chapter_pveceph" : "link:/pve-docs/chapter-pveceph.html#chapter_pveceph",
         "chapter_pvecm" : "link:/pve-docs/chapter-pvecm.html#chapter_pvecm",
         "chapter_pvesdn" : "link:/pve-docs/chapter-pvesdn.html#chapter_pvesdn",
         "chapter_pvesr" : "link:/pve-docs/chapter-pvesr.html#chapter_pvesr",
         "chapter_storage" : "link:/pve-docs/chapter-pvesm.html#chapter_storage",
         "chapter_system_administration" : "link:/pve-docs/chapter-sysadmin.html#chapter_system_administration",
         "chapter_user_management" : "link:/pve-docs/chapter-pveum.html#chapter_user_management",
         "chapter_virtual_machines" : "link:/pve-docs/chapter-qm.html#chapter_virtual_machines",
         "chapter_vzdump" : "link:/pve-docs/chapter-vzdump.html#chapter_vzdump",
         "chapter_zfs" : "link:/pve-docs/chapter-sysadmin.html#chapter_zfs",
         "datacenter_configuration_file" : "link:/pve-docs/pve-admin-guide.html#datacenter_configuration_file",
         "external_metric_server" : "link:/pve-docs/chapter-sysadmin.html#external_metric_server",
         "faq-support-table" : "link:/pve-docs/chapter-pve-faq.html#faq-support-table",
         "faq-upgrade" : "link:/pve-docs/chapter-pve-faq.html#faq-upgrade",
         "getting_help" : "link:/pve-docs/pve-admin-guide.html#getting_help",
         "gui_my_settings" : "link:/pve-docs/chapter-pve-gui.html#gui_my_settings",
         "ha_manager_error_recovery" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_error_recovery",
         "ha_manager_fencing" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_fencing",
         "ha_manager_groups" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_groups",
         "ha_manager_package_updates" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_package_updates",
         "ha_manager_resource_config" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_resource_config",
         "ha_manager_resources" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_resources",
         "ha_manager_shutdown_policy" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_shutdown_policy",
         "ha_manager_start_failure_policy" : "link:/pve-docs/chapter-ha-manager.html#ha_manager_start_failure_policy",
         "howto_improve_pve_docs" : "link:/pve-docs/pve-admin-guide.html#howto_improve_pve_docs",
         "install_minimal_requirements" : "link:/pve-docs/chapter-pve-installation.html#install_minimal_requirements",
         "install_recommended_requirements" : "link:/pve-docs/chapter-pve-installation.html#install_recommended_requirements",
         "installation_installer" : "link:/pve-docs/chapter-pve-installation.html#installation_installer",
         "installation_prepare_media" : "link:/pve-docs/chapter-pve-installation.html#installation_prepare_media",
         "metric_server_graphite" : "link:/pve-docs/chapter-sysadmin.html#metric_server_graphite",
         "metric_server_influxdb" : "link:/pve-docs/chapter-sysadmin.html#metric_server_influxdb",
         "pct_configuration" : "link:/pve-docs/chapter-pct.html#pct_configuration",
         "pct_container_images" : "link:/pve-docs/chapter-pct.html#pct_container_images",
         "pct_container_network" : "link:/pve-docs/chapter-pct.html#pct_container_network",
         "pct_container_storage" : "link:/pve-docs/chapter-pct.html#pct_container_storage",
         "pct_cpu" : "link:/pve-docs/chapter-pct.html#pct_cpu",
         "pct_general" : "link:/pve-docs/chapter-pct.html#pct_general",
         "pct_memory" : "link:/pve-docs/chapter-pct.html#pct_memory",
         "pct_migration" : "link:/pve-docs/chapter-pct.html#pct_migration",
         "pct_mount_points" : "link:/pve-docs/chapter-pct.html#pct_mount_points",
         "pct_options" : "link:/pve-docs/chapter-pct.html#pct_options",
         "pct_settings" : "link:/pve-docs/chapter-pct.html#pct_settings",
         "pct_snapshots" : "link:/pve-docs/chapter-pct.html#pct_snapshots",
         "pct_startup_and_shutdown" : "link:/pve-docs/chapter-pct.html#pct_startup_and_shutdown",
         "pve_ceph_device_classes" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_device_classes",
         "pve_ceph_install" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_install",
         "pve_ceph_install_wizard" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_install_wizard",
         "pve_ceph_manager" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_manager",
         "pve_ceph_monitors" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_monitors",
         "pve_ceph_osd_create" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osd_create",
         "pve_ceph_osd_destroy" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osd_destroy",
         "pve_ceph_osds" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_osds",
         "pve_ceph_pools" : "link:/pve-docs/chapter-pveceph.html#pve_ceph_pools",
         "pve_firewall_cluster_wide_setup" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_cluster_wide_setup",
         "pve_firewall_default_rules" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_default_rules",
         "pve_firewall_host_specific_configuration" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_host_specific_configuration",
         "pve_firewall_ip_aliases" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ip_aliases",
         "pve_firewall_ip_sets" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ip_sets",
         "pve_firewall_ipfilter_section" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_ipfilter_section",
         "pve_firewall_iptables_inspect" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_iptables_inspect",
         "pve_firewall_log_levels" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_log_levels",
         "pve_firewall_security_groups" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_security_groups",
         "pve_firewall_vm_container_configuration" : "link:/pve-docs/chapter-pve-firewall.html#pve_firewall_vm_container_configuration",
         "pveceph_create_mgr" : "link:/pve-docs/chapter-pveceph.html#pveceph_create_mgr",
         "pveceph_create_mon" : "link:/pve-docs/chapter-pveceph.html#pveceph_create_mon",
         "pveceph_destroy_mgr" : "link:/pve-docs/chapter-pveceph.html#pveceph_destroy_mgr",
         "pveceph_destroy_mon" : "link:/pve-docs/chapter-pveceph.html#pveceph_destroy_mon",
         "pveceph_fs" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs",
         "pveceph_fs_create" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs_create",
         "pveceph_fs_mds" : "link:/pve-docs/chapter-pveceph.html#pveceph_fs_mds",
         "pveceph_scrub" : "link:/pve-docs/chapter-pveceph.html#pveceph_scrub",
         "pvecm_adding_nodes_with_separated_cluster_network" : "link:/pve-docs/chapter-pvecm.html#pvecm_adding_nodes_with_separated_cluster_network",
         "pvecm_cluster_create_via_cli" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_create_via_cli",
         "pvecm_cluster_create_via_gui" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_create_via_gui",
         "pvecm_cluster_network_requirements" : "link:/pve-docs/chapter-pvecm.html#pvecm_cluster_network_requirements",
         "pvecm_corosync_addresses" : "link:/pve-docs/chapter-pvecm.html#pvecm_corosync_addresses",
         "pvecm_corosync_conf_glossary" : "link:/pve-docs/chapter-pvecm.html#pvecm_corosync_conf_glossary",
         "pvecm_create_cluster" : "link:/pve-docs/chapter-pvecm.html#pvecm_create_cluster",
         "pvecm_edit_corosync_conf" : "link:/pve-docs/chapter-pvecm.html#pvecm_edit_corosync_conf",
         "pvecm_join_node_to_cluster" : "link:/pve-docs/chapter-pvecm.html#pvecm_join_node_to_cluster",
         "pvecm_redundancy" : "link:/pve-docs/chapter-pvecm.html#pvecm_redundancy",
         "pvecm_separate_cluster_net_after_creation" : "link:/pve-docs/chapter-pvecm.html#pvecm_separate_cluster_net_after_creation",
         "pvecm_separate_node_without_reinstall" : "link:/pve-docs/chapter-pvecm.html#pvecm_separate_node_without_reinstall",
         "pvesdn_config_controllers" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_controllers",
         "pvesdn_config_main_sdn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_main_sdn",
         "pvesdn_config_vnet" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_vnet",
         "pvesdn_config_zone" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_config_zone",
         "pvesdn_controller_plugin_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_controller_plugin_evpn",
         "pvesdn_controller_plugins" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_controller_plugins",
         "pvesdn_installation" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_installation",
         "pvesdn_local_deployment_monitoring" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_local_deployment_monitoring",
         "pvesdn_setup_example_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_evpn",
         "pvesdn_setup_example_qinq" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_qinq",
         "pvesdn_setup_example_vlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_vlan",
         "pvesdn_setup_example_vxlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_setup_example_vxlan",
         "pvesdn_zone_plugin_evpn" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_evpn",
         "pvesdn_zone_plugin_qinq" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_qinq",
         "pvesdn_zone_plugin_vlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_vlan",
         "pvesdn_zone_plugin_vxlan" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugin_vxlan",
         "pvesdn_zone_plugins" : "link:/pve-docs/chapter-pvesdn.html#pvesdn_zone_plugins",
         "pvesr_schedule_format_examples" : "link:/pve-docs/chapter-pvesr.html#pvesr_schedule_format_examples",
         "pvesr_schedule_time_format" : "link:/pve-docs/chapter-pvesr.html#pvesr_schedule_time_format",
         "pveum_authentication_realms" : "link:/pve-docs/chapter-pveum.html#pveum_authentication_realms",
         "pveum_configure_u2f" : "link:/pve-docs/chapter-pveum.html#pveum_configure_u2f",
         "pveum_groups" : "link:/pve-docs/chapter-pveum.html#pveum_groups",
         "pveum_ldap_sync" : "link:/pve-docs/chapter-pveum.html#pveum_ldap_sync",
         "pveum_ldap_sync_options" : "link:/pve-docs/chapter-pveum.html#pveum_ldap_sync_options",
         "pveum_permission_management" : "link:/pve-docs/chapter-pveum.html#pveum_permission_management",
         "pveum_pools" : "link:/pve-docs/chapter-pveum.html#pveum_pools",
         "pveum_roles" : "link:/pve-docs/chapter-pveum.html#pveum_roles",
         "pveum_templated_paths" : "link:/pve-docs/chapter-pveum.html#pveum_templated_paths",
         "pveum_tfa_auth" : "link:/pve-docs/chapter-pveum.html#pveum_tfa_auth",
         "pveum_tokens" : "link:/pve-docs/chapter-pveum.html#pveum_tokens",
         "pveum_user_configured_totp" : "link:/pve-docs/chapter-pveum.html#pveum_user_configured_totp",
         "pveum_user_configured_u2f" : "link:/pve-docs/chapter-pveum.html#pveum_user_configured_u2f",
         "pveum_users" : "link:/pve-docs/chapter-pveum.html#pveum_users",
         "qm_audio_device" : "link:/pve-docs/chapter-qm.html#qm_audio_device",
         "qm_bios_and_uefi" : "link:/pve-docs/chapter-qm.html#qm_bios_and_uefi",
         "qm_bootorder" : "link:/pve-docs/chapter-qm.html#qm_bootorder",
         "qm_cloud_init" : "link:/pve-docs/chapter-qm.html#qm_cloud_init",
         "qm_configuration" : "link:/pve-docs/chapter-qm.html#qm_configuration",
         "qm_copy_and_clone" : "link:/pve-docs/chapter-qm.html#qm_copy_and_clone",
         "qm_cpu" : "link:/pve-docs/chapter-qm.html#qm_cpu",
         "qm_cpu_resource_limits" : "link:/pve-docs/chapter-qm.html#qm_cpu_resource_limits",
         "qm_display" : "link:/pve-docs/chapter-qm.html#qm_display",
         "qm_general_settings" : "link:/pve-docs/chapter-qm.html#qm_general_settings",
         "qm_hard_disk" : "link:/pve-docs/chapter-qm.html#qm_hard_disk",
         "qm_hard_disk_bus" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_bus",
         "qm_hard_disk_cache" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_cache",
         "qm_hard_disk_discard" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_discard",
         "qm_hard_disk_formats" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_formats",
         "qm_hard_disk_iothread" : "link:/pve-docs/chapter-qm.html#qm_hard_disk_iothread",
         "qm_hibernate" : "link:/pve-docs/chapter-qm.html#qm_hibernate",
         "qm_ivshmem" : "link:/pve-docs/chapter-qm.html#qm_ivshmem",
         "qm_memory" : "link:/pve-docs/chapter-qm.html#qm_memory",
         "qm_migration" : "link:/pve-docs/chapter-qm.html#qm_migration",
         "qm_network_device" : "link:/pve-docs/chapter-qm.html#qm_network_device",
         "qm_options" : "link:/pve-docs/chapter-qm.html#qm_options",
         "qm_os_settings" : "link:/pve-docs/chapter-qm.html#qm_os_settings",
         "qm_pci_passthrough" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough",
         "qm_pci_passthrough_update_initramfs" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough_update_initramfs",
         "qm_pci_passthrough_vm_config" : "link:/pve-docs/chapter-qm.html#qm_pci_passthrough_vm_config",
         "qm_snapshots" : "link:/pve-docs/chapter-qm.html#qm_snapshots",
         "qm_spice_enhancements" : "link:/pve-docs/chapter-qm.html#qm_spice_enhancements",
         "qm_startup_and_shutdown" : "link:/pve-docs/chapter-qm.html#qm_startup_and_shutdown",
         "qm_system_settings" : "link:/pve-docs/chapter-qm.html#qm_system_settings",
         "qm_templates" : "link:/pve-docs/chapter-qm.html#qm_templates",
         "qm_usb_passthrough" : "link:/pve-docs/chapter-qm.html#qm_usb_passthrough",
         "qm_virtio_rng" : "link:/pve-docs/chapter-qm.html#qm_virtio_rng",
         "qm_virtual_machines_settings" : "link:/pve-docs/chapter-qm.html#qm_virtual_machines_settings",
         "qm_vmstatestorage" : "link:/pve-docs/chapter-qm.html#qm_vmstatestorage",
         "storage_cephfs" : "link:/pve-docs/chapter-pvesm.html#storage_cephfs",
         "storage_cephfs_config" : "link:/pve-docs/chapter-pvesm.html#storage_cephfs_config",
         "storage_cifs" : "link:/pve-docs/chapter-pvesm.html#storage_cifs",
         "storage_directory" : "link:/pve-docs/chapter-pvesm.html#storage_directory",
         "storage_glusterfs" : "link:/pve-docs/chapter-pvesm.html#storage_glusterfs",
         "storage_iscsidirect" : "link:/pve-docs/chapter-pvesm.html#storage_iscsidirect",
         "storage_lvm" : "link:/pve-docs/chapter-pvesm.html#storage_lvm",
         "storage_lvmthin" : "link:/pve-docs/chapter-pvesm.html#storage_lvmthin",
         "storage_nfs" : "link:/pve-docs/chapter-pvesm.html#storage_nfs",
         "storage_open_iscsi" : "link:/pve-docs/chapter-pvesm.html#storage_open_iscsi",
         "storage_pbs" : "link:/pve-docs/chapter-pvesm.html#storage_pbs",
         "storage_pbs_encryption" : "link:/pve-docs/chapter-pvesm.html#storage_pbs_encryption",
         "storage_rbd_config" : "link:/pve-docs/chapter-pvesm.html#storage_rbd_config",
         "storage_zfspool" : "link:/pve-docs/chapter-pvesm.html#storage_zfspool",
         "sysadmin_certificate_management" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certificate_management",
         "sysadmin_certs_acme_account" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_account",
         "sysadmin_certs_acme_automatic_renewal" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_automatic_renewal",
         "sysadmin_certs_acme_dns_api_config" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_dns_api_config",
         "sysadmin_certs_acme_dns_challenge" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_dns_challenge",
         "sysadmin_certs_acme_http_challenge" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_http_challenge",
         "sysadmin_certs_acme_plugins" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_plugins",
         "sysadmin_certs_acme_switch_from_staging" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_acme_switch_from_staging",
         "sysadmin_certs_api_gui" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_api_gui",
         "sysadmin_certs_get_trusted_acme_cert" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_get_trusted_acme_cert",
         "sysadmin_certs_upload_custom" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_certs_upload_custom",
         "sysadmin_enterprise_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_enterprise_repo",
         "sysadmin_network_configuration" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_network_configuration",
         "sysadmin_no_subscription_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_no_subscription_repo",
         "sysadmin_package_repositories" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_package_repositories",
         "sysadmin_package_repositories_ceph" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_package_repositories_ceph",
         "sysadmin_test_repo" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_test_repo",
         "sysadmin_zfs_add_cache_and_log_dev" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_add_cache_and_log_dev",
         "sysadmin_zfs_change_failed_dev" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_change_failed_dev",
         "sysadmin_zfs_create_new_zpool" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid0",
         "sysadmin_zfs_create_new_zpool_raid1" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid1",
         "sysadmin_zfs_create_new_zpool_raid10" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raid10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_raidz1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_with_cache",
         "sysadmin_zfs_create_new_zpool_with_log" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_create_new_zpool_with_log",
         "sysadmin_zfs_limit_memory_usage" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_limit_memory_usage",
         "sysadmin_zfs_raid_considerations" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_considerations",
         "sysadmin_zfs_raid_performance" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_raid_size_space_usage_redundancy",
         "sysadmin_zfs_special_device" : "link:/pve-docs/chapter-sysadmin.html#sysadmin_zfs_special_device",
         "sysboot" : "link:/pve-docs/chapter-sysadmin.html#sysboot",
         "sysboot_determine_bootloader_used" : "link:/pve-docs/chapter-sysadmin.html#sysboot_determine_bootloader_used",
         "sysboot_edit_kernel_cmdline" : "link:/pve-docs/chapter-sysadmin.html#sysboot_edit_kernel_cmdline",
         "sysboot_grub" : "link:/pve-docs/chapter-sysadmin.html#sysboot_grub",
         "sysboot_installer_part_scheme" : "link:/pve-docs/chapter-sysadmin.html#sysboot_installer_part_scheme",
         "sysboot_systemd_boot" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot",
         "sysboot_systemd_boot_config" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot_config",
         "sysboot_systemd_boot_refresh" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot_refresh",
         "sysboot_systemd_boot_setup" : "link:/pve-docs/chapter-sysadmin.html#sysboot_systemd_boot_setup",
         "translation" : "link:/pve-docs/pve-admin-guide.html#translation",
         "udp" : "link:/pve-docs/chapter-sysadmin.html#udp",
         "vzdump_configuration" : "link:/pve-docs/chapter-vzdump.html#vzdump_configuration",
         "vzdump_restore" : "link:/pve-docs/chapter-vzdump.html#vzdump_restore",
         "vzdump_retention" : "link:/pve-docs/chapter-vzdump.html#vzdump_retention",
         "zfs_compression" : "link:/pve-docs/chapter-sysadmin.html#zfs_compression",
         "zfs_encryption" : "link:/pve-docs/chapter-sysadmin.html#zfs_encryption",
         "zfs_swap" : "link:/pve-docs/chapter-sysadmin.html#zfs_swap"
      },
      "manvolnum" : {
         "Ahmed15" : "pve-bibliography.adoc",
         "Ahmed16" : "pve-bibliography.adoc",
         "Bessen09" : "pve-bibliography.adoc",
         "Bir96" : "pve-bibliography.adoc",
         "Cheng14" : "pve-bibliography.adoc",
         "Goldman16" : "pve-bibliography.adoc",
         "Hertzog13" : "pve-bibliography.adoc",
         "Kreibich10" : "pve-bibliography.adoc",
         "Loeliger12" : "pve-bibliography.adoc",
         "Loshin03" : "pve-bibliography.adoc",
         "Mauerer08" : "pve-bibliography.adoc",
         "Richardson07" : "pve-bibliography.adoc",
         "Singh15" : "pve-bibliography.adoc",
         "Singh16" : "pve-bibliography.adoc",
         "Surber16" : "pve-bibliography.adoc",
         "Walsh10" : "pve-bibliography.adoc",
         "advanced_lvm_options" : "pve-installation.adoc",
         "advanced_zfs_options" : "pve-installation.adoc",
         "ceph_rados_block_devices" : "pvesm.adoc",
         "chapter_gui" : "pve-gui.adoc",
         "chapter_ha_manager" : "ha-manager.adoc",
         "chapter_hyper_converged_infrastructure" : "pve-intro.adoc",
         "chapter_installation" : "pve-installation.adoc",
         "chapter_lvm" : "sysadmin.adoc",
         "chapter_pct" : "pct.adoc",
         "chapter_pmxcfs" : "pmxcfs.adoc",
         "chapter_pve_firewall" : "pve-firewall.adoc",
         "chapter_pveceph" : "pveceph.adoc",
         "chapter_pvecm" : "pvecm.adoc",
         "chapter_pvesdn" : "pvesdn.adoc",
         "chapter_pvesr" : "pvesr.adoc",
         "chapter_storage" : "pvesm.adoc",
         "chapter_system_administration" : "sysadmin.adoc",
         "chapter_user_management" : "pveum.adoc",
         "chapter_virtual_machines" : "qm.adoc",
         "chapter_vzdump" : "vzdump.adoc",
         "chapter_zfs" : "sysadmin.adoc",
         "datacenter_configuration_file" : "datacenter.cfg.adoc",
         "external_metric_server" : "sysadmin.adoc",
         "faq-support-table" : "pve-faq.adoc",
         "faq-upgrade" : "pve-faq.adoc",
         "getting_help" : "pve-intro.adoc",
         "gui_my_settings" : "pve-gui.adoc",
         "ha_manager_error_recovery" : "ha-manager.adoc",
         "ha_manager_fencing" : "ha-manager.adoc",
         "ha_manager_groups" : "ha-manager.adoc",
         "ha_manager_package_updates" : "ha-manager.adoc",
         "ha_manager_resource_config" : "ha-manager.adoc",
         "ha_manager_resources" : "ha-manager.adoc",
         "ha_manager_shutdown_policy" : "ha-manager.adoc",
         "ha_manager_start_failure_policy" : "ha-manager.adoc",
         "howto_improve_pve_docs" : "pve-intro.adoc",
         "install_minimal_requirements" : "pve-installation.adoc",
         "install_recommended_requirements" : "pve-installation.adoc",
         "installation_installer" : "pve-installation.adoc",
         "installation_prepare_media" : "pve-installation.adoc",
         "metric_server_graphite" : "sysadmin.adoc",
         "metric_server_influxdb" : "sysadmin.adoc",
         "pct_configuration" : "pct.adoc",
         "pct_container_images" : "pct.adoc",
         "pct_container_network" : "pct.adoc",
         "pct_container_storage" : "pct.adoc",
         "pct_cpu" : "pct.adoc",
         "pct_general" : "pct.adoc",
         "pct_memory" : "pct.adoc",
         "pct_migration" : "pct.adoc",
         "pct_mount_points" : "pct.adoc",
         "pct_options" : "pct.adoc",
         "pct_settings" : "pct.adoc",
         "pct_snapshots" : "pct.adoc",
         "pct_startup_and_shutdown" : "pct.adoc",
         "pve_ceph_device_classes" : "pveceph.adoc",
         "pve_ceph_install" : "pveceph.adoc",
         "pve_ceph_install_wizard" : "pveceph.adoc",
         "pve_ceph_manager" : "pveceph.adoc",
         "pve_ceph_monitors" : "pveceph.adoc",
         "pve_ceph_osd_create" : "pveceph.adoc",
         "pve_ceph_osd_destroy" : "pveceph.adoc",
         "pve_ceph_osds" : "pveceph.adoc",
         "pve_ceph_pools" : "pveceph.adoc",
         "pve_firewall_cluster_wide_setup" : "pve-firewall.adoc",
         "pve_firewall_default_rules" : "pve-firewall.adoc",
         "pve_firewall_host_specific_configuration" : "pve-firewall.adoc",
         "pve_firewall_ip_aliases" : "pve-firewall.adoc",
         "pve_firewall_ip_sets" : "pve-firewall.adoc",
         "pve_firewall_ipfilter_section" : "pve-firewall.adoc",
         "pve_firewall_iptables_inspect" : "pve-firewall.adoc",
         "pve_firewall_log_levels" : "pve-firewall.adoc",
         "pve_firewall_security_groups" : "pve-firewall.adoc",
         "pve_firewall_vm_container_configuration" : "pve-firewall.adoc",
         "pveceph_create_mgr" : "pveceph.adoc",
         "pveceph_create_mon" : "pveceph.adoc",
         "pveceph_destroy_mgr" : "pveceph.adoc",
         "pveceph_destroy_mon" : "pveceph.adoc",
         "pveceph_fs" : "pveceph.adoc",
         "pveceph_fs_create" : "pveceph.adoc",
         "pveceph_fs_mds" : "pveceph.adoc",
         "pveceph_scrub" : "pveceph.adoc",
         "pvecm_adding_nodes_with_separated_cluster_network" : "pvecm.adoc",
         "pvecm_cluster_create_via_cli" : "pvecm.adoc",
         "pvecm_cluster_create_via_gui" : "pvecm.adoc",
         "pvecm_cluster_network_requirements" : "pvecm.adoc",
         "pvecm_corosync_addresses" : "pvecm.adoc",
         "pvecm_corosync_conf_glossary" : "pvecm.adoc",
         "pvecm_create_cluster" : "pvecm.adoc",
         "pvecm_edit_corosync_conf" : "pvecm.adoc",
         "pvecm_join_node_to_cluster" : "pvecm.adoc",
         "pvecm_redundancy" : "pvecm.adoc",
         "pvecm_separate_cluster_net_after_creation" : "pvecm.adoc",
         "pvecm_separate_node_without_reinstall" : "pvecm.adoc",
         "pvesdn_config_controllers" : "pvesdn.adoc",
         "pvesdn_config_main_sdn" : "pvesdn.adoc",
         "pvesdn_config_vnet" : "pvesdn.adoc",
         "pvesdn_config_zone" : "pvesdn.adoc",
         "pvesdn_controller_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_controller_plugins" : "pvesdn.adoc",
         "pvesdn_installation" : "pvesdn.adoc",
         "pvesdn_local_deployment_monitoring" : "pvesdn.adoc",
         "pvesdn_setup_example_evpn" : "pvesdn.adoc",
         "pvesdn_setup_example_qinq" : "pvesdn.adoc",
         "pvesdn_setup_example_vlan" : "pvesdn.adoc",
         "pvesdn_setup_example_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_evpn" : "pvesdn.adoc",
         "pvesdn_zone_plugin_qinq" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vlan" : "pvesdn.adoc",
         "pvesdn_zone_plugin_vxlan" : "pvesdn.adoc",
         "pvesdn_zone_plugins" : "pvesdn.adoc",
         "pvesr_schedule_format_examples" : "pvesr.adoc",
         "pvesr_schedule_time_format" : "pvesr.adoc",
         "pveum_authentication_realms" : "pveum.adoc",
         "pveum_configure_u2f" : "pveum.adoc",
         "pveum_groups" : "pveum.adoc",
         "pveum_ldap_sync" : "pveum.adoc",
         "pveum_ldap_sync_options" : "pveum.adoc",
         "pveum_permission_management" : "pveum.adoc",
         "pveum_pools" : "pveum.adoc",
         "pveum_roles" : "pveum.adoc",
         "pveum_templated_paths" : "pveum.adoc",
         "pveum_tfa_auth" : "pveum.adoc",
         "pveum_tokens" : "pveum.adoc",
         "pveum_user_configured_totp" : "pveum.adoc",
         "pveum_user_configured_u2f" : "pveum.adoc",
         "pveum_users" : "pveum.adoc",
         "qm_audio_device" : "qm.adoc",
         "qm_bios_and_uefi" : "qm.adoc",
         "qm_bootorder" : "qm.adoc",
         "qm_cloud_init" : "qm.adoc",
         "qm_configuration" : "qm.adoc",
         "qm_copy_and_clone" : "qm.adoc",
         "qm_cpu" : "qm.adoc",
         "qm_cpu_resource_limits" : "qm.adoc",
         "qm_display" : "qm.adoc",
         "qm_general_settings" : "qm.adoc",
         "qm_hard_disk" : "qm.adoc",
         "qm_hard_disk_bus" : "qm.adoc",
         "qm_hard_disk_cache" : "qm.adoc",
         "qm_hard_disk_discard" : "qm.adoc",
         "qm_hard_disk_formats" : "qm.adoc",
         "qm_hard_disk_iothread" : "qm.adoc",
         "qm_hibernate" : "qm.adoc",
         "qm_ivshmem" : "qm.adoc",
         "qm_memory" : "qm.adoc",
         "qm_migration" : "qm.adoc",
         "qm_network_device" : "qm.adoc",
         "qm_options" : "qm.adoc",
         "qm_os_settings" : "qm.adoc",
         "qm_pci_passthrough" : "qm.adoc",
         "qm_pci_passthrough_update_initramfs" : "qm.adoc",
         "qm_pci_passthrough_vm_config" : "qm.adoc",
         "qm_snapshots" : "qm.adoc",
         "qm_spice_enhancements" : "qm.adoc",
         "qm_startup_and_shutdown" : "qm.adoc",
         "qm_system_settings" : "qm.adoc",
         "qm_templates" : "qm.adoc",
         "qm_usb_passthrough" : "qm.adoc",
         "qm_virtio_rng" : "qm.adoc",
         "qm_virtual_machines_settings" : "qm.adoc",
         "qm_vmstatestorage" : "qm.adoc",
         "storage_cephfs" : "pvesm.adoc",
         "storage_cephfs_config" : "pvesm.adoc",
         "storage_cifs" : "pvesm.adoc",
         "storage_directory" : "pvesm.adoc",
         "storage_glusterfs" : "pvesm.adoc",
         "storage_iscsidirect" : "pvesm.adoc",
         "storage_lvm" : "pvesm.adoc",
         "storage_lvmthin" : "pvesm.adoc",
         "storage_nfs" : "pvesm.adoc",
         "storage_open_iscsi" : "pvesm.adoc",
         "storage_pbs" : "pvesm.adoc",
         "storage_pbs_encryption" : "pvesm.adoc",
         "storage_rbd_config" : "pvesm.adoc",
         "storage_zfspool" : "pvesm.adoc",
         "sysadmin_certificate_management" : "sysadmin.adoc",
         "sysadmin_certs_acme_account" : "sysadmin.adoc",
         "sysadmin_certs_acme_automatic_renewal" : "sysadmin.adoc",
         "sysadmin_certs_acme_dns_api_config" : "sysadmin.adoc",
         "sysadmin_certs_acme_dns_challenge" : "sysadmin.adoc",
         "sysadmin_certs_acme_http_challenge" : "sysadmin.adoc",
         "sysadmin_certs_acme_plugins" : "sysadmin.adoc",
         "sysadmin_certs_acme_switch_from_staging" : "sysadmin.adoc",
         "sysadmin_certs_api_gui" : "sysadmin.adoc",
         "sysadmin_certs_get_trusted_acme_cert" : "sysadmin.adoc",
         "sysadmin_certs_upload_custom" : "sysadmin.adoc",
         "sysadmin_enterprise_repo" : "sysadmin.adoc",
         "sysadmin_network_configuration" : "sysadmin.adoc",
         "sysadmin_no_subscription_repo" : "sysadmin.adoc",
         "sysadmin_package_repositories" : "sysadmin.adoc",
         "sysadmin_package_repositories_ceph" : "sysadmin.adoc",
         "sysadmin_test_repo" : "sysadmin.adoc",
         "sysadmin_zfs_add_cache_and_log_dev" : "sysadmin.adoc",
         "sysadmin_zfs_change_failed_dev" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid0" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid1" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raid10" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_raidz1" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_with_cache" : "sysadmin.adoc",
         "sysadmin_zfs_create_new_zpool_with_log" : "sysadmin.adoc",
         "sysadmin_zfs_limit_memory_usage" : "sysadmin.adoc",
         "sysadmin_zfs_raid_considerations" : "sysadmin.adoc",
         "sysadmin_zfs_raid_performance" : "sysadmin.adoc",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "sysadmin.adoc",
         "sysadmin_zfs_special_device" : "sysadmin.adoc",
         "sysboot" : "sysadmin.adoc",
         "sysboot_determine_bootloader_used" : "sysadmin.adoc",
         "sysboot_edit_kernel_cmdline" : "sysadmin.adoc",
         "sysboot_grub" : "sysadmin.adoc",
         "sysboot_installer_part_scheme" : "sysadmin.adoc",
         "sysboot_systemd_boot" : "sysadmin.adoc",
         "sysboot_systemd_boot_config" : "sysadmin.adoc",
         "sysboot_systemd_boot_refresh" : "sysadmin.adoc",
         "sysboot_systemd_boot_setup" : "sysadmin.adoc",
         "translation" : "pve-intro.adoc",
         "udp" : "sysadmin.adoc",
         "vzdump_configuration" : "vzdump.adoc",
         "vzdump_restore" : "vzdump.adoc",
         "vzdump_retention" : "vzdump.adoc",
         "zfs_compression" : "sysadmin.adoc",
         "zfs_encryption" : "sysadmin.adoc",
         "zfs_swap" : "sysadmin.adoc"
      },
      "wiki" : {
         "Ahmed15" : "link:/wiki/Bibliography#Ahmed15",
         "Ahmed16" : "link:/wiki/Bibliography#Ahmed16",
         "Bessen09" : "link:/wiki/Bibliography#Bessen09",
         "Bir96" : "link:/wiki/Bibliography#Bir96",
         "Cheng14" : "link:/wiki/Bibliography#Cheng14",
         "Goldman16" : "link:/wiki/Bibliography#Goldman16",
         "Hertzog13" : "link:/wiki/Bibliography#Hertzog13",
         "Kreibich10" : "link:/wiki/Bibliography#Kreibich10",
         "Loeliger12" : "link:/wiki/Bibliography#Loeliger12",
         "Loshin03" : "link:/wiki/Bibliography#Loshin03",
         "Mauerer08" : "link:/wiki/Bibliography#Mauerer08",
         "Richardson07" : "link:/wiki/Bibliography#Richardson07",
         "Singh15" : "link:/wiki/Bibliography#Singh15",
         "Singh16" : "link:/wiki/Bibliography#Singh16",
         "Surber16" : "link:/wiki/Bibliography#Surber16",
         "Walsh10" : "link:/wiki/Bibliography#Walsh10",
         "advanced_lvm_options" : "link:/wiki/Installation#advanced_lvm_options",
         "advanced_zfs_options" : "link:/wiki/Installation#advanced_zfs_options",
         "ceph_rados_block_devices" : "link:/wiki/Storage:_RBD#ceph_rados_block_devices",
         "chapter_gui" : "link:/wiki/Graphical_User_Interface#chapter_gui",
         "chapter_ha_manager" : "link:/wiki/High_Availability#chapter_ha_manager",
         "chapter_hyper_converged_infrastructure" : "link:/wiki/Introduction#chapter_hyper_converged_infrastructure",
         "chapter_installation" : "link:/wiki/Installation#chapter_installation",
         "chapter_lvm" : "link:/wiki/Logical_Volume_Manager_(LVM)#chapter_lvm",
         "chapter_pct" : "link:/wiki/Linux_Container#chapter_pct",
         "chapter_pmxcfs" : "link:/wiki/Proxmox_Cluster_File_System_(pmxcfs)#chapter_pmxcfs",
         "chapter_pve_firewall" : "link:/wiki/Firewall#chapter_pve_firewall",
         "chapter_pveceph" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#chapter_pveceph",
         "chapter_pvecm" : "link:/wiki/Cluster_Manager#chapter_pvecm",
         "chapter_pvesdn" : "link:/wiki/Software_Defined_Network#chapter_pvesdn",
         "chapter_pvesr" : "link:/wiki/Storage_Replication#chapter_pvesr",
         "chapter_storage" : "link:/wiki/Storage#chapter_storage",
         "chapter_system_administration" : "link:/wiki/Host_System_Administration#chapter_system_administration",
         "chapter_user_management" : "link:/wiki/User_Management#chapter_user_management",
         "chapter_virtual_machines" : "link:/wiki/Qemu/KVM_Virtual_Machines#chapter_virtual_machines",
         "chapter_vzdump" : "link:/wiki/Backup_and_Restore#chapter_vzdump",
         "chapter_zfs" : "link:/wiki/ZFS_on_Linux#chapter_zfs",
         "datacenter_configuration_file" : "link:/wiki/Manual:_datacenter.cfg#datacenter_configuration_file",
         "external_metric_server" : "link:/wiki/External_Metric_Server#external_metric_server",
         "faq-support-table" : "link:/wiki/FAQ#faq-support-table",
         "faq-upgrade" : "link:/wiki/FAQ#faq-upgrade",
         "getting_help" : "link:/wiki/Introduction#getting_help",
         "gui_my_settings" : "link:/wiki/Graphical_User_Interface#gui_my_settings",
         "ha_manager_error_recovery" : "link:/wiki/High_Availability#ha_manager_error_recovery",
         "ha_manager_fencing" : "link:/wiki/High_Availability#ha_manager_fencing",
         "ha_manager_groups" : "link:/wiki/High_Availability#ha_manager_groups",
         "ha_manager_package_updates" : "link:/wiki/High_Availability#ha_manager_package_updates",
         "ha_manager_resource_config" : "link:/wiki/High_Availability#ha_manager_resource_config",
         "ha_manager_resources" : "link:/wiki/High_Availability#ha_manager_resources",
         "ha_manager_shutdown_policy" : "link:/wiki/High_Availability#ha_manager_shutdown_policy",
         "ha_manager_start_failure_policy" : "link:/wiki/High_Availability#ha_manager_start_failure_policy",
         "howto_improve_pve_docs" : "link:/wiki/Introduction#howto_improve_pve_docs",
         "install_minimal_requirements" : "link:/wiki/System_Requirements#install_minimal_requirements",
         "install_recommended_requirements" : "link:/wiki/System_Requirements#install_recommended_requirements",
         "installation_installer" : "link:/wiki/Installation#installation_installer",
         "installation_prepare_media" : "link:/wiki/Prepare_Installation_Media#installation_prepare_media",
         "metric_server_graphite" : "link:/wiki/External_Metric_Server#metric_server_graphite",
         "metric_server_influxdb" : "link:/wiki/External_Metric_Server#metric_server_influxdb",
         "pct_configuration" : "link:/wiki/Linux_Container#pct_configuration",
         "pct_container_images" : "link:/wiki/Linux_Container#pct_container_images",
         "pct_container_network" : "link:/wiki/Linux_Container#pct_container_network",
         "pct_container_storage" : "link:/wiki/Linux_Container#pct_container_storage",
         "pct_cpu" : "link:/wiki/Linux_Container#pct_cpu",
         "pct_general" : "link:/wiki/Linux_Container#pct_general",
         "pct_memory" : "link:/wiki/Linux_Container#pct_memory",
         "pct_migration" : "link:/wiki/Linux_Container#pct_migration",
         "pct_mount_points" : "link:/wiki/Linux_Container#pct_mount_points",
         "pct_options" : "link:/wiki/Linux_Container#pct_options",
         "pct_settings" : "link:/wiki/Linux_Container#pct_settings",
         "pct_snapshots" : "link:/wiki/Linux_Container#pct_snapshots",
         "pct_startup_and_shutdown" : "link:/wiki/Linux_Container#pct_startup_and_shutdown",
         "pve_ceph_device_classes" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_device_classes",
         "pve_ceph_install" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_install",
         "pve_ceph_install_wizard" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_install_wizard",
         "pve_ceph_manager" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_manager",
         "pve_ceph_monitors" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_monitors",
         "pve_ceph_osd_create" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osd_create",
         "pve_ceph_osd_destroy" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osd_destroy",
         "pve_ceph_osds" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_osds",
         "pve_ceph_pools" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pve_ceph_pools",
         "pve_firewall_cluster_wide_setup" : "link:/wiki/Firewall#pve_firewall_cluster_wide_setup",
         "pve_firewall_default_rules" : "link:/wiki/Firewall#pve_firewall_default_rules",
         "pve_firewall_host_specific_configuration" : "link:/wiki/Firewall#pve_firewall_host_specific_configuration",
         "pve_firewall_ip_aliases" : "link:/wiki/Firewall#pve_firewall_ip_aliases",
         "pve_firewall_ip_sets" : "link:/wiki/Firewall#pve_firewall_ip_sets",
         "pve_firewall_ipfilter_section" : "link:/wiki/Firewall#pve_firewall_ipfilter_section",
         "pve_firewall_iptables_inspect" : "link:/wiki/Firewall#pve_firewall_iptables_inspect",
         "pve_firewall_log_levels" : "link:/wiki/Firewall#pve_firewall_log_levels",
         "pve_firewall_security_groups" : "link:/wiki/Firewall#pve_firewall_security_groups",
         "pve_firewall_vm_container_configuration" : "link:/wiki/Firewall#pve_firewall_vm_container_configuration",
         "pveceph_create_mgr" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_create_mgr",
         "pveceph_create_mon" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_create_mon",
         "pveceph_destroy_mgr" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_destroy_mgr",
         "pveceph_destroy_mon" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_destroy_mon",
         "pveceph_fs" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs",
         "pveceph_fs_create" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs_create",
         "pveceph_fs_mds" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_fs_mds",
         "pveceph_scrub" : "link:/wiki/Deploy_Hyper-Converged_Ceph_Cluster#pveceph_scrub",
         "pvecm_adding_nodes_with_separated_cluster_network" : "link:/wiki/Cluster_Manager#pvecm_adding_nodes_with_separated_cluster_network",
         "pvecm_cluster_create_via_cli" : "link:/wiki/Cluster_Manager#pvecm_cluster_create_via_cli",
         "pvecm_cluster_create_via_gui" : "link:/wiki/Cluster_Manager#pvecm_cluster_create_via_gui",
         "pvecm_cluster_network_requirements" : "link:/wiki/Cluster_Manager#pvecm_cluster_network_requirements",
         "pvecm_corosync_addresses" : "link:/wiki/Cluster_Manager#pvecm_corosync_addresses",
         "pvecm_corosync_conf_glossary" : "link:/wiki/Cluster_Manager#pvecm_corosync_conf_glossary",
         "pvecm_create_cluster" : "link:/wiki/Cluster_Manager#pvecm_create_cluster",
         "pvecm_edit_corosync_conf" : "link:/wiki/Cluster_Manager#pvecm_edit_corosync_conf",
         "pvecm_join_node_to_cluster" : "link:/wiki/Cluster_Manager#pvecm_join_node_to_cluster",
         "pvecm_redundancy" : "link:/wiki/Cluster_Manager#pvecm_redundancy",
         "pvecm_separate_cluster_net_after_creation" : "link:/wiki/Cluster_Manager#pvecm_separate_cluster_net_after_creation",
         "pvecm_separate_node_without_reinstall" : "link:/wiki/Cluster_Manager#pvecm_separate_node_without_reinstall",
         "pvesdn_config_controllers" : "link:/wiki/Software_Defined_Network#pvesdn_config_controllers",
         "pvesdn_config_main_sdn" : "link:/wiki/Software_Defined_Network#pvesdn_config_main_sdn",
         "pvesdn_config_vnet" : "link:/wiki/Software_Defined_Network#pvesdn_config_vnet",
         "pvesdn_config_zone" : "link:/wiki/Software_Defined_Network#pvesdn_config_zone",
         "pvesdn_controller_plugin_evpn" : "link:/wiki/Software_Defined_Network#pvesdn_controller_plugin_evpn",
         "pvesdn_controller_plugins" : "link:/wiki/Software_Defined_Network#pvesdn_controller_plugins",
         "pvesdn_installation" : "link:/wiki/Software_Defined_Network#pvesdn_installation",
         "pvesdn_local_deployment_monitoring" : "link:/wiki/Software_Defined_Network#pvesdn_local_deployment_monitoring",
         "pvesdn_setup_example_evpn" : "link:/wiki/Software_Defined_Network#pvesdn_setup_example_evpn",
         "pvesdn_setup_example_qinq" : "link:/wiki/Software_Defined_Network#pvesdn_setup_example_qinq",
         "pvesdn_setup_example_vlan" : "link:/wiki/Software_Defined_Network#pvesdn_setup_example_vlan",
         "pvesdn_setup_example_vxlan" : "link:/wiki/Software_Defined_Network#pvesdn_setup_example_vxlan",
         "pvesdn_zone_plugin_evpn" : "link:/wiki/Software_Defined_Network#pvesdn_zone_plugin_evpn",
         "pvesdn_zone_plugin_qinq" : "link:/wiki/Software_Defined_Network#pvesdn_zone_plugin_qinq",
         "pvesdn_zone_plugin_vlan" : "link:/wiki/Software_Defined_Network#pvesdn_zone_plugin_vlan",
         "pvesdn_zone_plugin_vxlan" : "link:/wiki/Software_Defined_Network#pvesdn_zone_plugin_vxlan",
         "pvesdn_zone_plugins" : "link:/wiki/Software_Defined_Network#pvesdn_zone_plugins",
         "pvesr_schedule_format_examples" : "link:/wiki/Storage_Replication#pvesr_schedule_format_examples",
         "pvesr_schedule_time_format" : "link:/wiki/Storage_Replication#pvesr_schedule_time_format",
         "pveum_authentication_realms" : "link:/wiki/User_Management#pveum_authentication_realms",
         "pveum_configure_u2f" : "link:/wiki/User_Management#pveum_configure_u2f",
         "pveum_groups" : "link:/wiki/User_Management#pveum_groups",
         "pveum_ldap_sync" : "link:/wiki/User_Management#pveum_ldap_sync",
         "pveum_ldap_sync_options" : "link:/wiki/User_Management#pveum_ldap_sync_options",
         "pveum_permission_management" : "link:/wiki/User_Management#pveum_permission_management",
         "pveum_pools" : "link:/wiki/User_Management#pveum_pools",
         "pveum_roles" : "link:/wiki/User_Management#pveum_roles",
         "pveum_templated_paths" : "link:/wiki/User_Management#pveum_templated_paths",
         "pveum_tfa_auth" : "link:/wiki/User_Management#pveum_tfa_auth",
         "pveum_tokens" : "link:/wiki/User_Management#pveum_tokens",
         "pveum_user_configured_totp" : "link:/wiki/User_Management#pveum_user_configured_totp",
         "pveum_user_configured_u2f" : "link:/wiki/User_Management#pveum_user_configured_u2f",
         "pveum_users" : "link:/wiki/User_Management#pveum_users",
         "qm_audio_device" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_audio_device",
         "qm_bios_and_uefi" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_bios_and_uefi",
         "qm_bootorder" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_bootorder",
         "qm_cloud_init" : "link:/wiki/Cloud-Init_Support#qm_cloud_init",
         "qm_configuration" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_configuration",
         "qm_copy_and_clone" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_copy_and_clone",
         "qm_cpu" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_cpu",
         "qm_cpu_resource_limits" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_cpu_resource_limits",
         "qm_display" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_display",
         "qm_general_settings" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_general_settings",
         "qm_hard_disk" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk",
         "qm_hard_disk_bus" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk_bus",
         "qm_hard_disk_cache" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk_cache",
         "qm_hard_disk_discard" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk_discard",
         "qm_hard_disk_formats" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk_formats",
         "qm_hard_disk_iothread" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hard_disk_iothread",
         "qm_hibernate" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_hibernate",
         "qm_ivshmem" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_ivshmem",
         "qm_memory" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_memory",
         "qm_migration" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_migration",
         "qm_network_device" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_network_device",
         "qm_options" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_options",
         "qm_os_settings" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_os_settings",
         "qm_pci_passthrough" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough",
         "qm_pci_passthrough_update_initramfs" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough_update_initramfs",
         "qm_pci_passthrough_vm_config" : "link:/wiki/PCI(e)_Passthrough#qm_pci_passthrough_vm_config",
         "qm_snapshots" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_snapshots",
         "qm_spice_enhancements" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_spice_enhancements",
         "qm_startup_and_shutdown" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_startup_and_shutdown",
         "qm_system_settings" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_system_settings",
         "qm_templates" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_templates",
         "qm_usb_passthrough" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_usb_passthrough",
         "qm_virtio_rng" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_virtio_rng",
         "qm_virtual_machines_settings" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_virtual_machines_settings",
         "qm_vmstatestorage" : "link:/wiki/Qemu/KVM_Virtual_Machines#qm_vmstatestorage",
         "storage_cephfs" : "link:/wiki/Storage:_CephFS#storage_cephfs",
         "storage_cephfs_config" : "link:/wiki/Storage:_CephFS#storage_cephfs_config",
         "storage_cifs" : "link:/wiki/Storage:_CIFS#storage_cifs",
         "storage_directory" : "link:/wiki/Storage:_Directory#storage_directory",
         "storage_glusterfs" : "link:/wiki/Storage:_GlusterFS#storage_glusterfs",
         "storage_iscsidirect" : "link:/wiki/Storage:_User_Mode_iSCSI#storage_iscsidirect",
         "storage_lvm" : "link:/wiki/Storage:_LVM#storage_lvm",
         "storage_lvmthin" : "link:/wiki/Storage:_LVM_Thin#storage_lvmthin",
         "storage_nfs" : "link:/wiki/Storage:_NFS#storage_nfs",
         "storage_open_iscsi" : "link:/wiki/Storage:_iSCSI#storage_open_iscsi",
         "storage_pbs" : "link:/wiki/Storage:_Proxmox_Backup_Server#storage_pbs",
         "storage_pbs_encryption" : "link:/wiki/Storage:_Proxmox_Backup_Server#storage_pbs_encryption",
         "storage_rbd_config" : "link:/wiki/Storage:_RBD#storage_rbd_config",
         "storage_zfspool" : "link:/wiki/Storage:_ZFS#storage_zfspool",
         "sysadmin_certificate_management" : "link:/wiki/Certificate_Management#sysadmin_certificate_management",
         "sysadmin_certs_acme_account" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_account",
         "sysadmin_certs_acme_automatic_renewal" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_automatic_renewal",
         "sysadmin_certs_acme_dns_api_config" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_dns_api_config",
         "sysadmin_certs_acme_dns_challenge" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_dns_challenge",
         "sysadmin_certs_acme_http_challenge" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_http_challenge",
         "sysadmin_certs_acme_plugins" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_plugins",
         "sysadmin_certs_acme_switch_from_staging" : "link:/wiki/Certificate_Management#sysadmin_certs_acme_switch_from_staging",
         "sysadmin_certs_api_gui" : "link:/wiki/Certificate_Management#sysadmin_certs_api_gui",
         "sysadmin_certs_get_trusted_acme_cert" : "link:/wiki/Certificate_Management#sysadmin_certs_get_trusted_acme_cert",
         "sysadmin_certs_upload_custom" : "link:/wiki/Certificate_Management#sysadmin_certs_upload_custom",
         "sysadmin_enterprise_repo" : "link:/wiki/Package_Repositories#sysadmin_enterprise_repo",
         "sysadmin_network_configuration" : "link:/wiki/Network_Configuration#sysadmin_network_configuration",
         "sysadmin_no_subscription_repo" : "link:/wiki/Package_Repositories#sysadmin_no_subscription_repo",
         "sysadmin_package_repositories" : "link:/wiki/Package_Repositories#sysadmin_package_repositories",
         "sysadmin_package_repositories_ceph" : "link:/wiki/Package_Repositories#sysadmin_package_repositories_ceph",
         "sysadmin_test_repo" : "link:/wiki/Package_Repositories#sysadmin_test_repo",
         "sysadmin_zfs_add_cache_and_log_dev" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_add_cache_and_log_dev",
         "sysadmin_zfs_change_failed_dev" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_change_failed_dev",
         "sysadmin_zfs_create_new_zpool" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid0",
         "sysadmin_zfs_create_new_zpool_raid1" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid1",
         "sysadmin_zfs_create_new_zpool_raid10" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raid10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_raidz1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_with_cache",
         "sysadmin_zfs_create_new_zpool_with_log" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_create_new_zpool_with_log",
         "sysadmin_zfs_limit_memory_usage" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_limit_memory_usage",
         "sysadmin_zfs_raid_considerations" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_considerations",
         "sysadmin_zfs_raid_performance" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_raid_size_space_usage_redundancy",
         "sysadmin_zfs_special_device" : "link:/wiki/ZFS_on_Linux#sysadmin_zfs_special_device",
         "sysboot" : "link:/wiki/Host_Bootloader#sysboot",
         "sysboot_determine_bootloader_used" : "link:/wiki/Host_Bootloader#sysboot_determine_bootloader_used",
         "sysboot_edit_kernel_cmdline" : "link:/wiki/Host_Bootloader#sysboot_edit_kernel_cmdline",
         "sysboot_grub" : "link:/wiki/Host_Bootloader#sysboot_grub",
         "sysboot_installer_part_scheme" : "link:/wiki/Host_Bootloader#sysboot_installer_part_scheme",
         "sysboot_systemd_boot" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot",
         "sysboot_systemd_boot_config" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot_config",
         "sysboot_systemd_boot_refresh" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot_refresh",
         "sysboot_systemd_boot_setup" : "link:/wiki/Host_Bootloader#sysboot_systemd_boot_setup",
         "translation" : "link:/wiki/Introduction#translation",
         "udp" : "link:/wiki/External_Metric_Server#udp",
         "vzdump_configuration" : "link:/wiki/Backup_and_Restore#vzdump_configuration",
         "vzdump_restore" : "link:/wiki/Backup_and_Restore#vzdump_restore",
         "vzdump_retention" : "link:/wiki/Backup_and_Restore#vzdump_retention",
         "zfs_compression" : "link:/wiki/ZFS_on_Linux#zfs_compression",
         "zfs_encryption" : "link:/wiki/ZFS_on_Linux#zfs_encryption",
         "zfs_swap" : "link:/wiki/ZFS_on_Linux#zfs_swap"
      }
   },
   "doctype" : {
      "default" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "certificate-management.adoc" : 1,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      },
      "manvolnum" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "certificate-management.adoc" : 1,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 0,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      },
      "wiki" : {
         "GFDL.adoc" : 0,
         "README.adoc" : 0,
         "certificate-management.adoc" : 1,
         "cpu-models.conf.adoc" : 0,
         "datacenter.cfg.adoc" : 0,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 0,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "index.adoc" : 0,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "output-format.adoc" : 1,
         "pct.adoc" : 0,
         "pct.conf.adoc" : 0,
         "pmxcfs.adoc" : 0,
         "pve-admin-guide.adoc" : 0,
         "pve-bibliography.adoc" : 0,
         "pve-copyright.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 0,
         "pve-firewall.adoc" : 0,
         "pve-gui.adoc" : 0,
         "pve-ha-crm.adoc" : 0,
         "pve-ha-lrm.adoc" : 0,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 0,
         "pve-intro.adoc" : 0,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveam.adoc" : 0,
         "pveceph.adoc" : 0,
         "pvecm.adoc" : 0,
         "pvedaemon.adoc" : 0,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 0,
         "pveproxy.adoc" : 0,
         "pvesdn.adoc" : 0,
         "pvesh.adoc" : 0,
         "pvesm.adoc" : 0,
         "pvesr.adoc" : 0,
         "pvestatd.adoc" : 0,
         "pvesubscription.adoc" : 0,
         "pveum.adoc" : 0,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm.adoc" : 0,
         "qm.conf.adoc" : 0,
         "qmeventd.adoc" : 0,
         "qmrestore.adoc" : 0,
         "spiceproxy.adoc" : 0,
         "sysadmin.adoc" : 0,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vxlan-and-evpn.adoc" : 2,
         "vzdump.adoc" : 0
      }
   },
   "include" : {
      "default" : {
         "GFDL.adoc" : {},
         "certificate-management.adoc" : {},
         "chapter-index-table.adoc" : {},
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.1-synopsis.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-resources-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "local-lvm.adoc" : {},
         "local-zfs.adoc" : {},
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.1-synopsis.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pmxcfs.8-synopsis.adoc" : {},
         "pmxcfs.adoc" : {},
         "pve-admin-guide.adoc" : {
            "GFDL.adoc" : 1,
            "datacenter.cfg.adoc" : 1,
            "ha-manager.1-synopsis.adoc" : 1,
            "ha-manager.adoc" : 1,
            "output-format.adoc" : 1,
            "pct.1-synopsis.adoc" : 1,
            "pct.adoc" : 1,
            "pmxcfs.8-synopsis.adoc" : 1,
            "pmxcfs.adoc" : 1,
            "pve-bibliography.adoc" : 1,
            "pve-faq.adoc" : 1,
            "pve-firewall-macros.adoc" : 1,
            "pve-firewall.8-synopsis.adoc" : 1,
            "pve-firewall.adoc" : 1,
            "pve-gui.adoc" : 1,
            "pve-ha-crm.8-synopsis.adoc" : 1,
            "pve-ha-lrm.8-synopsis.adoc" : 1,
            "pve-installation.adoc" : 1,
            "pve-intro.adoc" : 1,
            "pveam.1-synopsis.adoc" : 1,
            "pveceph.1-synopsis.adoc" : 1,
            "pveceph.adoc" : 1,
            "pvecm.1-synopsis.adoc" : 1,
            "pvecm.adoc" : 1,
            "pvedaemon.8-synopsis.adoc" : 1,
            "pvedaemon.adoc" : 1,
            "pvenode.1-synopsis.adoc" : 1,
            "pvenode.adoc" : 1,
            "pveperf.1-synopsis.adoc" : 1,
            "pveperf.adoc" : 1,
            "pveproxy.8-synopsis.adoc" : 1,
            "pveproxy.adoc" : 1,
            "pvesdn.adoc" : 1,
            "pvesh.1-synopsis.adoc" : 1,
            "pvesh.adoc" : 1,
            "pvesm.1-synopsis.adoc" : 1,
            "pvesm.adoc" : 1,
            "pvesr.1-synopsis.adoc" : 1,
            "pvesr.adoc" : 1,
            "pvestatd.8-synopsis.adoc" : 1,
            "pvestatd.adoc" : 1,
            "pvesubscription.1-synopsis.adoc" : 1,
            "pvesubscription.adoc" : 1,
            "pveum.1-synopsis.adoc" : 1,
            "pveum.adoc" : 1,
            "qm.1-synopsis.adoc" : 1,
            "qm.adoc" : 1,
            "qmrestore.1-synopsis.adoc" : 1,
            "spiceproxy.8-synopsis.adoc" : 1,
            "spiceproxy.adoc" : 1,
            "sysadmin.adoc" : 1,
            "vzdump.1-synopsis.adoc" : 1,
            "vzdump.adoc" : 1
         },
         "pve-bibliography.adoc" : {},
         "pve-disk-health-monitoring.adoc" : {},
         "pve-external-metric-server.adoc" : {},
         "pve-faq.adoc" : {},
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-macros.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall.8-synopsis.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1
         },
         "pve-gui.adoc" : {},
         "pve-ha-crm.8-synopsis.adoc" : {},
         "pve-ha-lrm.8-synopsis.adoc" : {},
         "pve-installation-media.adoc" : {},
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 1,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "pve-network.adoc" : {},
         "pve-package-repos.adoc" : {},
         "pve-storage-cephfs.adoc" : {},
         "pve-storage-cifs.adoc" : {},
         "pve-storage-dir.adoc" : {},
         "pve-storage-glusterfs.adoc" : {},
         "pve-storage-iscsi.adoc" : {},
         "pve-storage-iscsidirect.adoc" : {},
         "pve-storage-lvm.adoc" : {},
         "pve-storage-lvmthin.adoc" : {},
         "pve-storage-nfs.adoc" : {},
         "pve-storage-pbs.adoc" : {},
         "pve-storage-rbd.adoc" : {},
         "pve-storage-zfspool.adoc" : {},
         "pve-system-requirements.adoc" : {},
         "pveam.1-synopsis.adoc" : {},
         "pveceph.1-synopsis.adoc" : {},
         "pveceph.adoc" : {},
         "pvecm.1-synopsis.adoc" : {},
         "pvecm.adoc" : {},
         "pvedaemon.8-synopsis.adoc" : {},
         "pvedaemon.adoc" : {},
         "pvenode.1-synopsis.adoc" : {},
         "pvenode.adoc" : {},
         "pveperf.1-synopsis.adoc" : {},
         "pveperf.adoc" : {},
         "pveproxy.8-synopsis.adoc" : {},
         "pveproxy.adoc" : {},
         "pvesdn.adoc" : {},
         "pvesh.1-synopsis.adoc" : {},
         "pvesh.adoc" : {},
         "pvesm.1-synopsis.adoc" : {},
         "pvesm.adoc" : {
            "pve-storage-cephfs.adoc" : 1,
            "pve-storage-cifs.adoc" : 1,
            "pve-storage-dir.adoc" : 1,
            "pve-storage-glusterfs.adoc" : 1,
            "pve-storage-iscsi.adoc" : 1,
            "pve-storage-iscsidirect.adoc" : 1,
            "pve-storage-lvm.adoc" : 1,
            "pve-storage-lvmthin.adoc" : 1,
            "pve-storage-nfs.adoc" : 1,
            "pve-storage-pbs.adoc" : 1,
            "pve-storage-rbd.adoc" : 1,
            "pve-storage-zfspool.adoc" : 1
         },
         "pvesr.1-synopsis.adoc" : {},
         "pvesr.adoc" : {},
         "pvestatd.8-synopsis.adoc" : {},
         "pvestatd.adoc" : {},
         "pvesubscription.1-synopsis.adoc" : {},
         "pvesubscription.adoc" : {},
         "pveum.1-synopsis.adoc" : {},
         "pveum.adoc" : {},
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm-pci-passthrough.adoc" : {},
         "qm.1-synopsis.adoc" : {},
         "qm.adoc" : {
            "qm-cloud-init.adoc" : 1,
            "qm-pci-passthrough.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "qmrestore.1-synopsis.adoc" : {},
         "spiceproxy.8-synopsis.adoc" : {},
         "spiceproxy.adoc" : {},
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 1,
            "local-lvm.adoc" : 1,
            "local-zfs.adoc" : 1,
            "pve-disk-health-monitoring.adoc" : 1,
            "pve-external-metric-server.adoc" : 1,
            "pve-network.adoc" : 1,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 1,
            "system-booting.adoc" : 1,
            "system-software-updates.adoc" : 1,
            "system-timesync.adoc" : 1
         },
         "system-booting.adoc" : {},
         "system-software-updates.adoc" : {},
         "system-timesync.adoc" : {},
         "translation.adoc" : {},
         "vzdump.1-synopsis.adoc" : {},
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      },
      "manvolnum" : {
         "certificate-management.adoc" : {},
         "chapter-index-table.adoc" : {},
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.1-synopsis.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-manager.1-synopsis.adoc" : 1,
            "ha-resources-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "local-lvm.adoc" : {},
         "local-zfs.adoc" : {},
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.1-synopsis.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.1-synopsis.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pmxcfs.8-synopsis.adoc" : {},
         "pmxcfs.adoc" : {
            "pmxcfs.8-synopsis.adoc" : 1,
            "pve-copyright.adoc" : 1
         },
         "pve-copyright.adoc" : {},
         "pve-disk-health-monitoring.adoc" : {},
         "pve-external-metric-server.adoc" : {},
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-macros.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall.8-synopsis.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-macros.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1,
            "pve-firewall.8-synopsis.adoc" : 1
         },
         "pve-ha-crm.8-synopsis.adoc" : {},
         "pve-ha-crm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-ha-crm.8-synopsis.adoc" : 1
         },
         "pve-ha-lrm.8-synopsis.adoc" : {},
         "pve-ha-lrm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-ha-lrm.8-synopsis.adoc" : 1
         },
         "pve-installation-media.adoc" : {},
         "pve-installation.adoc" : {
            "pve-installation-media.adoc" : 1,
            "pve-system-requirements.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "pve-network.adoc" : {},
         "pve-package-repos.adoc" : {
            "pve-copyright.adoc" : 1
         },
         "pve-storage-cephfs.adoc" : {},
         "pve-storage-cifs.adoc" : {},
         "pve-storage-dir.adoc" : {},
         "pve-storage-glusterfs.adoc" : {},
         "pve-storage-iscsi.adoc" : {},
         "pve-storage-iscsidirect.adoc" : {},
         "pve-storage-lvm.adoc" : {},
         "pve-storage-lvmthin.adoc" : {},
         "pve-storage-nfs.adoc" : {},
         "pve-storage-pbs.adoc" : {},
         "pve-storage-rbd.adoc" : {},
         "pve-storage-zfspool.adoc" : {},
         "pve-system-requirements.adoc" : {},
         "pveam.1-synopsis.adoc" : {},
         "pveam.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveam.1-synopsis.adoc" : 1
         },
         "pveceph.1-synopsis.adoc" : {},
         "pveceph.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveceph.1-synopsis.adoc" : 1
         },
         "pvecm.1-synopsis.adoc" : {},
         "pvecm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvecm.1-synopsis.adoc" : 1
         },
         "pvedaemon.8-synopsis.adoc" : {},
         "pvedaemon.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvedaemon.8-synopsis.adoc" : 1
         },
         "pvenode.1-synopsis.adoc" : {},
         "pvenode.adoc" : {
            "output-format.adoc" : 1,
            "pve-copyright.adoc" : 1,
            "pvenode.1-synopsis.adoc" : 1
         },
         "pveperf.1-synopsis.adoc" : {},
         "pveperf.adoc" : {
            "pveperf.1-synopsis.adoc" : 1
         },
         "pveproxy.8-synopsis.adoc" : {},
         "pveproxy.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveproxy.8-synopsis.adoc" : 1
         },
         "pvesh.1-synopsis.adoc" : {},
         "pvesh.adoc" : {
            "output-format.adoc" : 1,
            "pve-copyright.adoc" : 1,
            "pvesh.1-synopsis.adoc" : 1
         },
         "pvesm.1-synopsis.adoc" : {},
         "pvesm.adoc" : {
            "pve-copyright.adoc" : 1,
            "pve-storage-cephfs.adoc" : 1,
            "pve-storage-cifs.adoc" : 1,
            "pve-storage-dir.adoc" : 1,
            "pve-storage-glusterfs.adoc" : 1,
            "pve-storage-iscsi.adoc" : 1,
            "pve-storage-iscsidirect.adoc" : 1,
            "pve-storage-lvm.adoc" : 1,
            "pve-storage-lvmthin.adoc" : 1,
            "pve-storage-nfs.adoc" : 1,
            "pve-storage-pbs.adoc" : 1,
            "pve-storage-rbd.adoc" : 1,
            "pve-storage-zfspool.adoc" : 1,
            "pvesm.1-synopsis.adoc" : 1
         },
         "pvesr.1-synopsis.adoc" : {},
         "pvesr.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvesr.1-synopsis.adoc" : 1
         },
         "pvestatd.8-synopsis.adoc" : {},
         "pvestatd.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvestatd.8-synopsis.adoc" : 1
         },
         "pvesubscription.1-synopsis.adoc" : {},
         "pvesubscription.adoc" : {
            "pve-copyright.adoc" : 1,
            "pvesubscription.1-synopsis.adoc" : 1
         },
         "pveum.1-synopsis.adoc" : {},
         "pveum.adoc" : {
            "pve-copyright.adoc" : 1,
            "pveum.1-synopsis.adoc" : 1
         },
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm-pci-passthrough.adoc" : {},
         "qm.1-synopsis.adoc" : {},
         "qm.adoc" : {
            "pve-copyright.adoc" : 1,
            "qm-cloud-init.adoc" : 1,
            "qm-pci-passthrough.adoc" : 1,
            "qm.1-synopsis.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "pve-copyright.adoc" : 1,
            "qm.conf.5-opts.adoc" : 1
         },
         "qmeventd.8-synopsis.adoc" : {},
         "qmeventd.adoc" : {
            "pve-copyright.adoc" : 1,
            "qmeventd.8-synopsis.adoc" : 1
         },
         "qmrestore.1-synopsis.adoc" : {},
         "qmrestore.adoc" : {
            "pve-copyright.adoc" : 1,
            "qmrestore.1-synopsis.adoc" : 1
         },
         "spiceproxy.8-synopsis.adoc" : {},
         "spiceproxy.adoc" : {
            "pve-copyright.adoc" : 1,
            "spiceproxy.8-synopsis.adoc" : 1
         },
         "sysadmin.adoc" : {
            "certificate-management.adoc" : 1,
            "local-lvm.adoc" : 1,
            "local-zfs.adoc" : 1,
            "pve-disk-health-monitoring.adoc" : 1,
            "pve-external-metric-server.adoc" : 1,
            "pve-network.adoc" : 1,
            "pve-package-repos.adoc" : 1,
            "pvenode.adoc" : 1,
            "system-booting.adoc" : 1,
            "system-software-updates.adoc" : 1,
            "system-timesync.adoc" : 1
         },
         "system-booting.adoc" : {},
         "system-software-updates.adoc" : {},
         "system-timesync.adoc" : {},
         "translation.adoc" : {},
         "vzdump.1-synopsis.adoc" : {},
         "vzdump.adoc" : {
            "pve-copyright.adoc" : 1,
            "vzdump.1-synopsis.adoc" : 1,
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      },
      "wiki" : {
         "chapter-index-table.adoc" : {},
         "cpu-models.conf.5-opts.adoc" : {},
         "cpu-models.conf.adoc" : {
            "cpu-models.conf.5-opts.adoc" : 1
         },
         "datacenter.cfg.5-opts.adoc" : {},
         "datacenter.cfg.adoc" : {
            "datacenter.cfg.5-opts.adoc" : 1
         },
         "getting-help.adoc" : {},
         "ha-groups-opts.adoc" : {},
         "ha-manager.adoc" : {
            "ha-groups-opts.adoc" : 1,
            "ha-resources-opts.adoc" : 1
         },
         "ha-resources-opts.adoc" : {},
         "howto-improve-pve-docs.adoc" : {},
         "hyper-converged-infrastructure.adoc" : {},
         "index.adoc" : {
            "chapter-index-table.adoc" : 1,
            "man1-index-table.adoc" : 1,
            "man5-index-table.adoc" : 1,
            "man8-index-table.adoc" : 1
         },
         "man1-index-table.adoc" : {},
         "man5-index-table.adoc" : {},
         "man8-index-table.adoc" : {},
         "output-format-opts.adoc" : {},
         "output-format.adoc" : {
            "output-format-opts.adoc" : 1
         },
         "pct-mountpoint-opts.adoc" : {},
         "pct-network-opts.adoc" : {},
         "pct.adoc" : {
            "pct-mountpoint-opts.adoc" : 1,
            "pct-network-opts.adoc" : 1,
            "pct.conf.5-opts.adoc" : 1
         },
         "pct.conf.5-opts.adoc" : {},
         "pct.conf.adoc" : {
            "pct.conf.5-opts.adoc" : 1
         },
         "pve-firewall-cluster-opts.adoc" : {},
         "pve-firewall-host-opts.adoc" : {},
         "pve-firewall-rules-opts.adoc" : {},
         "pve-firewall-vm-opts.adoc" : {},
         "pve-firewall.adoc" : {
            "pve-firewall-cluster-opts.adoc" : 1,
            "pve-firewall-host-opts.adoc" : 1,
            "pve-firewall-rules-opts.adoc" : 1,
            "pve-firewall-vm-opts.adoc" : 1
         },
         "pve-intro.adoc" : {
            "getting-help.adoc" : 1,
            "howto-improve-pve-docs.adoc" : 1,
            "hyper-converged-infrastructure.adoc" : 1,
            "translation.adoc" : 1
         },
         "qm-cloud-init-opts.adoc" : {},
         "qm-cloud-init.adoc" : {
            "qm-cloud-init-opts.adoc" : 1
         },
         "qm.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "qm.conf.5-opts.adoc" : {},
         "qm.conf.adoc" : {
            "qm.conf.5-opts.adoc" : 1
         },
         "translation.adoc" : {},
         "vzdump.adoc" : {
            "vzdump.conf.5-opts.adoc" : 1
         },
         "vzdump.conf.5-opts.adoc" : {}
      }
   },
   "mansection" : {
      "manvolnum" : {
         "cpu-models.conf.adoc" : "5",
         "datacenter.cfg.adoc" : "5",
         "ha-manager.adoc" : "1",
         "pct.adoc" : "1",
         "pct.conf.adoc" : "5",
         "pmxcfs.adoc" : "8",
         "pve-firewall.adoc" : "8",
         "pve-ha-crm.adoc" : "8",
         "pve-ha-lrm.adoc" : "8",
         "pveam.adoc" : "1",
         "pveceph.adoc" : "1",
         "pvecm.adoc" : "1",
         "pvedaemon.adoc" : "8",
         "pvenode.adoc" : "1",
         "pveperf.adoc" : "1",
         "pveproxy.adoc" : "8",
         "pvesh.adoc" : "1",
         "pvesm.adoc" : "1",
         "pvesr.adoc" : "1",
         "pvestatd.adoc" : "8",
         "pvesubscription.adoc" : "1",
         "pveum.adoc" : "1",
         "qm.adoc" : "1",
         "qm.conf.adoc" : "5",
         "qmeventd.adoc" : "8",
         "qmrestore.adoc" : "1",
         "spiceproxy.adoc" : "8",
         "vzdump.adoc" : "1"
      }
   },
   "outfile" : {
      "default" : {
         "ha-manager.adoc" : "chapter-ha-manager.html",
         "pct.adoc" : "chapter-pct.html",
         "pmxcfs.adoc" : "chapter-pmxcfs.html",
         "pve-admin-guide.adoc" : "pve-admin-guide.html",
         "pve-bibliography.adoc" : "chapter-pve-bibliography.html",
         "pve-faq.adoc" : "chapter-pve-faq.html",
         "pve-firewall.adoc" : "chapter-pve-firewall.html",
         "pve-gui.adoc" : "chapter-pve-gui.html",
         "pve-installation.adoc" : "chapter-pve-installation.html",
         "pveceph.adoc" : "chapter-pveceph.html",
         "pvecm.adoc" : "chapter-pvecm.html",
         "pvesdn.adoc" : "chapter-pvesdn.html",
         "pvesh.adoc" : "chapter-pvesh.html",
         "pvesm.adoc" : "chapter-pvesm.html",
         "pvesr.adoc" : "chapter-pvesr.html",
         "pveum.adoc" : "chapter-pveum.html",
         "qm.adoc" : "chapter-qm.html",
         "qmeventd.adoc" : "chapter-qmeventd.html",
         "sysadmin.adoc" : "chapter-sysadmin.html",
         "vzdump.adoc" : "chapter-vzdump.html"
      },
      "manvolnum" : {
         "cpu-models.conf.adoc" : "cpu-models.conf.5",
         "datacenter.cfg.adoc" : "datacenter.cfg.5",
         "ha-manager.adoc" : "ha-manager.1",
         "pct.adoc" : "pct.1",
         "pct.conf.adoc" : "pct.conf.5",
         "pmxcfs.adoc" : "pmxcfs.8",
         "pve-firewall.adoc" : "pve-firewall.8",
         "pve-ha-crm.adoc" : "pve-ha-crm.8",
         "pve-ha-lrm.adoc" : "pve-ha-lrm.8",
         "pveam.adoc" : "pveam.1",
         "pveceph.adoc" : "pveceph.1",
         "pvecm.adoc" : "pvecm.1",
         "pvedaemon.adoc" : "pvedaemon.8",
         "pvenode.adoc" : "pvenode.1",
         "pveperf.adoc" : "pveperf.1",
         "pveproxy.adoc" : "pveproxy.8",
         "pvesh.adoc" : "pvesh.1",
         "pvesm.adoc" : "pvesm.1",
         "pvesr.adoc" : "pvesr.1",
         "pvestatd.adoc" : "pvestatd.8",
         "pvesubscription.adoc" : "pvesubscription.1",
         "pveum.adoc" : "pveum.1",
         "qm.adoc" : "qm.1",
         "qm.conf.adoc" : "qm.conf.5",
         "qmeventd.adoc" : "qmeventd.8",
         "qmrestore.adoc" : "qmrestore.1",
         "spiceproxy.adoc" : "spiceproxy.8",
         "vzdump.adoc" : "vzdump.1"
      },
      "wiki" : {
         "certificate-management.adoc" : "certificate-management-plain.html",
         "cpu-models.conf.adoc" : "cpu-models.conf.5-plain.html",
         "datacenter.cfg.adoc" : "datacenter.cfg.5-plain.html",
         "getting-help.adoc" : "getting-help-plain.html",
         "ha-manager.adoc" : "ha-manager-plain.html",
         "howto-improve-pve-docs.adoc" : "howto-improve-pve-docs-plain.html",
         "hyper-converged-infrastructure.adoc" : "hyper-converged-infrastructure-plain.html",
         "local-lvm.adoc" : "local-lvm-plain.html",
         "local-zfs.adoc" : "local-zfs-plain.html",
         "pct.adoc" : "pct-plain.html",
         "pct.conf.adoc" : "pct.conf.5-plain.html",
         "pmxcfs.adoc" : "pmxcfs-plain.html",
         "pve-bibliography.adoc" : "pve-bibliography-plain.html",
         "pve-disk-health-monitoring.adoc" : "pve-disk-health-monitoring-plain.html",
         "pve-external-metric-server.adoc" : "pve-external-metric-server-plain.html",
         "pve-faq.adoc" : "pve-faq-plain.html",
         "pve-firewall.adoc" : "pve-firewall-plain.html",
         "pve-gui.adoc" : "pve-gui-plain.html",
         "pve-installation-media.adoc" : "pve-installation-media-plain.html",
         "pve-installation.adoc" : "pve-installation-plain.html",
         "pve-network.adoc" : "pve-network-plain.html",
         "pve-package-repos.adoc" : "pve-package-repos-plain.html",
         "pve-storage-cephfs.adoc" : "pve-storage-cephfs-plain.html",
         "pve-storage-cifs.adoc" : "pve-storage-cifs-plain.html",
         "pve-storage-dir.adoc" : "pve-storage-dir-plain.html",
         "pve-storage-glusterfs.adoc" : "pve-storage-glusterfs-plain.html",
         "pve-storage-iscsi.adoc" : "pve-storage-iscsi-plain.html",
         "pve-storage-iscsidirect.adoc" : "pve-storage-iscsidirect-plain.html",
         "pve-storage-lvm.adoc" : "pve-storage-lvm-plain.html",
         "pve-storage-lvmthin.adoc" : "pve-storage-lvmthin-plain.html",
         "pve-storage-nfs.adoc" : "pve-storage-nfs-plain.html",
         "pve-storage-pbs.adoc" : "pve-storage-pbs-plain.html",
         "pve-storage-rbd.adoc" : "pve-storage-rbd-plain.html",
         "pve-storage-zfspool.adoc" : "pve-storage-zfspool-plain.html",
         "pve-system-requirements.adoc" : "pve-system-requirements-plain.html",
         "pveceph.adoc" : "pveceph-plain.html",
         "pvecm.adoc" : "pvecm-plain.html",
         "pvenode.adoc" : "pvenode-plain.html",
         "pvesdn.adoc" : "pvesdn-plain.html",
         "pvesh.adoc" : "pvesh-plain.html",
         "pvesm.adoc" : "pvesm-plain.html",
         "pvesr.adoc" : "pvesr-plain.html",
         "pveum.adoc" : "pveum-plain.html",
         "qm-cloud-init.adoc" : "qm-cloud-init-plain.html",
         "qm-pci-passthrough.adoc" : "qm-pci-passthrough-plain.html",
         "qm.adoc" : "qm-plain.html",
         "qm.conf.adoc" : "qm.conf.5-plain.html",
         "qmeventd.adoc" : "qmeventd-plain.html",
         "sysadmin.adoc" : "sysadmin-plain.html",
         "system-booting.adoc" : "system-booting-plain.html",
         "system-software-updates.adoc" : "system-software-updates-plain.html",
         "system-timesync.adoc" : "system-timesync-plain.html",
         "translation.adoc" : "translation-plain.html",
         "vzdump.adoc" : "vzdump-plain.html"
      }
   },
   "reftext" : {
      "default" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ceph_rados_block_devices" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "datacenter_configuration_file" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "getting_help" : "",
         "gui_my_settings" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_main_sdn" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_controller_plugins" : "",
         "pvesdn_installation" : "",
         "pvesdn_local_deployment_monitoring" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesdn_zone_plugins" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_groups" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_ivshmem" : "",
         "qm_memory" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_enterprise_repo" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "sysboot_systemd_boot_refresh" : "",
         "sysboot_systemd_boot_setup" : "",
         "translation" : "",
         "udp" : "",
         "vzdump_configuration" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      },
      "manvolnum" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ceph_rados_block_devices" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "datacenter_configuration_file" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "getting_help" : "",
         "gui_my_settings" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_main_sdn" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_controller_plugins" : "",
         "pvesdn_installation" : "",
         "pvesdn_local_deployment_monitoring" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesdn_zone_plugins" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_groups" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_ivshmem" : "",
         "qm_memory" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_enterprise_repo" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "sysboot_systemd_boot_refresh" : "",
         "sysboot_systemd_boot_setup" : "",
         "translation" : "",
         "udp" : "",
         "vzdump_configuration" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      },
      "wiki" : {
         "Ahmed15" : "&#91;Ahmed15&#93;",
         "Ahmed16" : "&#91;Ahmed16&#93;",
         "Bessen09" : "&#91;Bessen09&#93;",
         "Bir96" : "&#91;Bir96&#93;",
         "Cheng14" : "&#91;Cheng14&#93;",
         "Goldman16" : "&#91;Goldman16&#93;",
         "Hertzog13" : "&#91;Hertzog13&#93;",
         "Kreibich10" : "&#91;Kreibich10&#93;",
         "Loeliger12" : "&#91;Loeliger12&#93;",
         "Loshin03" : "&#91;Loshin03&#93;",
         "Mauerer08" : "&#91;Mauerer08&#93;",
         "Richardson07" : "&#91;Richardson07&#93;",
         "Singh15" : "&#91;Singh15&#93;",
         "Singh16" : "&#91;Singh16&#93;",
         "Surber16" : "&#91;Surber16&#93;",
         "Walsh10" : "&#91;Walsh10&#93;",
         "advanced_lvm_options" : "",
         "advanced_zfs_options" : "",
         "ceph_rados_block_devices" : "",
         "chapter_gui" : "",
         "chapter_ha_manager" : "",
         "chapter_hyper_converged_infrastructure" : "",
         "chapter_installation" : "",
         "chapter_lvm" : "",
         "chapter_pct" : "",
         "chapter_pmxcfs" : "",
         "chapter_pve_firewall" : "",
         "chapter_pveceph" : "",
         "chapter_pvecm" : "",
         "chapter_pvesdn" : "",
         "chapter_pvesr" : "",
         "chapter_storage" : "",
         "chapter_system_administration" : "",
         "chapter_user_management" : "",
         "chapter_virtual_machines" : "",
         "chapter_vzdump" : "",
         "chapter_zfs" : "",
         "datacenter_configuration_file" : "",
         "external_metric_server" : "",
         "faq-support-table" : "",
         "faq-upgrade" : "",
         "getting_help" : "",
         "gui_my_settings" : "",
         "ha_manager_error_recovery" : "",
         "ha_manager_fencing" : "",
         "ha_manager_groups" : "",
         "ha_manager_package_updates" : "",
         "ha_manager_resource_config" : "",
         "ha_manager_resources" : "",
         "ha_manager_shutdown_policy" : "",
         "ha_manager_start_failure_policy" : "",
         "howto_improve_pve_docs" : "",
         "install_minimal_requirements" : "",
         "install_recommended_requirements" : "",
         "installation_installer" : "",
         "installation_prepare_media" : "",
         "metric_server_graphite" : "",
         "metric_server_influxdb" : "",
         "pct_configuration" : "",
         "pct_container_images" : "",
         "pct_container_network" : "",
         "pct_container_storage" : "",
         "pct_cpu" : "",
         "pct_general" : "",
         "pct_memory" : "",
         "pct_migration" : "",
         "pct_mount_points" : "",
         "pct_options" : "",
         "pct_settings" : "",
         "pct_snapshots" : "",
         "pct_startup_and_shutdown" : "",
         "pve_ceph_device_classes" : "",
         "pve_ceph_install" : "",
         "pve_ceph_install_wizard" : "",
         "pve_ceph_manager" : "",
         "pve_ceph_monitors" : "",
         "pve_ceph_osd_create" : "",
         "pve_ceph_osd_destroy" : "",
         "pve_ceph_osds" : "",
         "pve_ceph_pools" : "",
         "pve_firewall_cluster_wide_setup" : "",
         "pve_firewall_default_rules" : "",
         "pve_firewall_host_specific_configuration" : "",
         "pve_firewall_ip_aliases" : "",
         "pve_firewall_ip_sets" : "",
         "pve_firewall_ipfilter_section" : "",
         "pve_firewall_iptables_inspect" : "",
         "pve_firewall_log_levels" : "",
         "pve_firewall_security_groups" : "",
         "pve_firewall_vm_container_configuration" : "",
         "pveceph_create_mgr" : "",
         "pveceph_create_mon" : "",
         "pveceph_destroy_mgr" : "",
         "pveceph_destroy_mon" : "",
         "pveceph_fs" : "",
         "pveceph_fs_create" : "",
         "pveceph_fs_mds" : "",
         "pveceph_scrub" : "",
         "pvecm_adding_nodes_with_separated_cluster_network" : "",
         "pvecm_cluster_create_via_cli" : "",
         "pvecm_cluster_create_via_gui" : "",
         "pvecm_cluster_network_requirements" : "",
         "pvecm_corosync_addresses" : "",
         "pvecm_corosync_conf_glossary" : "",
         "pvecm_create_cluster" : "",
         "pvecm_edit_corosync_conf" : "",
         "pvecm_join_node_to_cluster" : "",
         "pvecm_redundancy" : "",
         "pvecm_separate_cluster_net_after_creation" : "",
         "pvecm_separate_node_without_reinstall" : "",
         "pvesdn_config_controllers" : "",
         "pvesdn_config_main_sdn" : "",
         "pvesdn_config_vnet" : "",
         "pvesdn_config_zone" : "",
         "pvesdn_controller_plugin_evpn" : "",
         "pvesdn_controller_plugins" : "",
         "pvesdn_installation" : "",
         "pvesdn_local_deployment_monitoring" : "",
         "pvesdn_setup_example_evpn" : "",
         "pvesdn_setup_example_qinq" : "",
         "pvesdn_setup_example_vlan" : "",
         "pvesdn_setup_example_vxlan" : "",
         "pvesdn_zone_plugin_evpn" : "",
         "pvesdn_zone_plugin_qinq" : "",
         "pvesdn_zone_plugin_vlan" : "",
         "pvesdn_zone_plugin_vxlan" : "",
         "pvesdn_zone_plugins" : "",
         "pvesr_schedule_format_examples" : "",
         "pvesr_schedule_time_format" : "",
         "pveum_authentication_realms" : "",
         "pveum_configure_u2f" : "",
         "pveum_groups" : "",
         "pveum_ldap_sync" : "",
         "pveum_ldap_sync_options" : "",
         "pveum_permission_management" : "",
         "pveum_pools" : "",
         "pveum_roles" : "",
         "pveum_templated_paths" : "",
         "pveum_tfa_auth" : "",
         "pveum_tokens" : "",
         "pveum_user_configured_totp" : "",
         "pveum_user_configured_u2f" : "",
         "pveum_users" : "",
         "qm_audio_device" : "",
         "qm_bios_and_uefi" : "",
         "qm_bootorder" : "",
         "qm_cloud_init" : "",
         "qm_configuration" : "",
         "qm_copy_and_clone" : "",
         "qm_cpu" : "",
         "qm_cpu_resource_limits" : "",
         "qm_display" : "",
         "qm_general_settings" : "",
         "qm_hard_disk" : "",
         "qm_hard_disk_bus" : "",
         "qm_hard_disk_cache" : "",
         "qm_hard_disk_discard" : "",
         "qm_hard_disk_formats" : "",
         "qm_hard_disk_iothread" : "",
         "qm_hibernate" : "",
         "qm_ivshmem" : "",
         "qm_memory" : "",
         "qm_migration" : "",
         "qm_network_device" : "",
         "qm_options" : "",
         "qm_os_settings" : "",
         "qm_pci_passthrough" : "",
         "qm_pci_passthrough_update_initramfs" : "",
         "qm_pci_passthrough_vm_config" : "",
         "qm_snapshots" : "",
         "qm_spice_enhancements" : "",
         "qm_startup_and_shutdown" : "",
         "qm_system_settings" : "",
         "qm_templates" : "",
         "qm_usb_passthrough" : "",
         "qm_virtio_rng" : "",
         "qm_virtual_machines_settings" : "",
         "qm_vmstatestorage" : "",
         "storage_cephfs" : "",
         "storage_cephfs_config" : "",
         "storage_cifs" : "",
         "storage_directory" : "",
         "storage_glusterfs" : "",
         "storage_iscsidirect" : "",
         "storage_lvm" : "",
         "storage_lvmthin" : "",
         "storage_nfs" : "",
         "storage_open_iscsi" : "",
         "storage_pbs" : "",
         "storage_pbs_encryption" : "",
         "storage_rbd_config" : "",
         "storage_zfspool" : "",
         "sysadmin_certificate_management" : "",
         "sysadmin_certs_acme_account" : "",
         "sysadmin_certs_acme_automatic_renewal" : "",
         "sysadmin_certs_acme_dns_api_config" : "",
         "sysadmin_certs_acme_dns_challenge" : "",
         "sysadmin_certs_acme_http_challenge" : "",
         "sysadmin_certs_acme_plugins" : "",
         "sysadmin_certs_acme_switch_from_staging" : "",
         "sysadmin_certs_api_gui" : "",
         "sysadmin_certs_get_trusted_acme_cert" : "",
         "sysadmin_certs_upload_custom" : "",
         "sysadmin_enterprise_repo" : "",
         "sysadmin_network_configuration" : "",
         "sysadmin_no_subscription_repo" : "",
         "sysadmin_package_repositories" : "",
         "sysadmin_package_repositories_ceph" : "",
         "sysadmin_test_repo" : "",
         "sysadmin_zfs_add_cache_and_log_dev" : "",
         "sysadmin_zfs_change_failed_dev" : "",
         "sysadmin_zfs_create_new_zpool" : "",
         "sysadmin_zfs_create_new_zpool_raid0" : "",
         "sysadmin_zfs_create_new_zpool_raid1" : "",
         "sysadmin_zfs_create_new_zpool_raid10" : "",
         "sysadmin_zfs_create_new_zpool_raidz1" : "",
         "sysadmin_zfs_create_new_zpool_with_cache" : "",
         "sysadmin_zfs_create_new_zpool_with_log" : "",
         "sysadmin_zfs_limit_memory_usage" : "",
         "sysadmin_zfs_raid_considerations" : "",
         "sysadmin_zfs_raid_performance" : "",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "",
         "sysadmin_zfs_special_device" : "",
         "sysboot" : "",
         "sysboot_determine_bootloader_used" : "",
         "sysboot_edit_kernel_cmdline" : "",
         "sysboot_grub" : "",
         "sysboot_installer_part_scheme" : "",
         "sysboot_systemd_boot" : "",
         "sysboot_systemd_boot_config" : "",
         "sysboot_systemd_boot_refresh" : "",
         "sysboot_systemd_boot_setup" : "",
         "translation" : "",
         "udp" : "",
         "vzdump_configuration" : "",
         "vzdump_restore" : "",
         "vzdump_retention" : "",
         "zfs_compression" : "",
         "zfs_encryption" : "",
         "zfs_swap" : ""
      }
   },
   "reftitle" : {
      "default" : {
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "High Availability",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_pve_firewall" : "Proxmox VE Firewall",
         "chapter_pveceph" : "Deploy Hyper-Converged Ceph Cluster",
         "chapter_pvesdn" : "Software Defined Network",
         "chapter_storage" : "Proxmox VE Storage",
         "chapter_system_administration" : "Host System Administration",
         "chapter_user_management" : "User Management",
         "chapter_virtual_machines" : "Qemu/KVM Virtual Machines",
         "chapter_vzdump" : "Backup and Restore",
         "chapter_zfs" : "ZFS on Linux",
         "datacenter_configuration_file" : "Datacenter Configuration",
         "external_metric_server" : "External Metric Server",
         "getting_help" : "Getting Help",
         "gui_my_settings" : "My Settings",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pve_ceph_device_classes" : "Ceph CRUSH & device classes",
         "pve_ceph_install" : "Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph installation & configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes With Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_corosync_addresses" : "Corosync addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate A Node Without Reinstalling",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_main_sdn" : "SDN",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_controller_plugins" : "Controllers Plugins",
         "pvesdn_installation" : "Installation",
         "pvesdn_local_deployment_monitoring" : "Local Deployment Monitoring",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesdn_zone_plugins" : "Zones Plugins",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server side U2F configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_sync" : "Syncing LDAP-based realms",
         "pveum_ldap_sync_options" : "Options",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-factor authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User configured TOTP authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a user",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_memory" : "Memory",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_glusterfs" : "GlusterFS Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Octopus Repository",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "Grub",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "vzdump_configuration" : "Configuration",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      },
      "manvolnum" : {
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "ha-manager(1)",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_pct" : "pct(1)",
         "chapter_pmxcfs" : "pmxcfs(8)",
         "chapter_pve_firewall" : "pve-firewall(8)",
         "chapter_pveceph" : "pveceph(1)",
         "chapter_pvecm" : "pvecm(1)",
         "chapter_pvesdn" : "Software Defined Network",
         "chapter_pvesr" : "pvesr(1)",
         "chapter_storage" : "pvesm(1)",
         "chapter_system_administration" : "Host System Administration",
         "chapter_user_management" : "pveum(1)",
         "chapter_virtual_machines" : "qm(1)",
         "chapter_vzdump" : "vzdump(1)",
         "chapter_zfs" : "ZFS on Linux",
         "datacenter_configuration_file" : "datacenter.cfg(5)",
         "external_metric_server" : "External Metric Server",
         "getting_help" : "Getting Help",
         "gui_my_settings" : "My Settings",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pve_ceph_device_classes" : "Ceph CRUSH & device classes",
         "pve_ceph_install" : "Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph installation & configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes With Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_corosync_addresses" : "Corosync addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate A Node Without Reinstalling",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_main_sdn" : "SDN",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_controller_plugins" : "Controllers Plugins",
         "pvesdn_installation" : "Installation",
         "pvesdn_local_deployment_monitoring" : "Local Deployment Monitoring",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesdn_zone_plugins" : "Zones Plugins",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server side U2F configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_sync" : "Syncing LDAP-based realms",
         "pveum_ldap_sync_options" : "Options",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-factor authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User configured TOTP authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a user",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_memory" : "Memory",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_glusterfs" : "GlusterFS Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Octopus Repository",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "Grub",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "vzdump_configuration" : "Configuration",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      },
      "wiki" : {
         "advanced_lvm_options" : "Advanced LVM Configuration Options",
         "advanced_zfs_options" : "Advanced ZFS Configuration Options",
         "ceph_rados_block_devices" : "Ceph RADOS Block Devices (RBD)",
         "chapter_gui" : "Graphical User Interface",
         "chapter_ha_manager" : "High Availability",
         "chapter_hyper_converged_infrastructure" : "Hyper-converged Infrastructure",
         "chapter_installation" : "Installing Proxmox VE",
         "chapter_lvm" : "Logical Volume Manager (LVM)",
         "chapter_pve_firewall" : "Proxmox VE Firewall",
         "chapter_pveceph" : "Deploy Hyper-Converged Ceph Cluster",
         "chapter_pvesdn" : "Software Defined Network",
         "chapter_storage" : "Proxmox VE Storage",
         "chapter_system_administration" : "Host System Administration",
         "chapter_user_management" : "User Management",
         "chapter_virtual_machines" : "Qemu/KVM Virtual Machines",
         "chapter_vzdump" : "Backup and Restore",
         "chapter_zfs" : "ZFS on Linux",
         "datacenter_configuration_file" : "Datacenter Configuration",
         "external_metric_server" : "External Metric Server",
         "getting_help" : "Getting Help",
         "gui_my_settings" : "My Settings",
         "ha_manager_error_recovery" : "Error Recovery",
         "ha_manager_fencing" : "Fencing",
         "ha_manager_groups" : "Groups",
         "ha_manager_package_updates" : "Package Updates",
         "ha_manager_resource_config" : "Resources",
         "ha_manager_resources" : "Resources",
         "ha_manager_shutdown_policy" : "Shutdown Policy",
         "ha_manager_start_failure_policy" : "Start Failure Policy",
         "howto_improve_pve_docs" : "Improving the Proxmox VE Documentation",
         "install_minimal_requirements" : "Minimum Requirements, for Evaluation",
         "install_recommended_requirements" : "Recommended System Requirements",
         "installation_installer" : "Using the Proxmox VE Installer",
         "installation_prepare_media" : "Prepare Installation Media",
         "metric_server_graphite" : "Graphite server configuration",
         "metric_server_influxdb" : "Influxdb plugin configuration",
         "pct_configuration" : "Configuration",
         "pct_container_images" : "Container Images",
         "pct_container_network" : "Network",
         "pct_container_storage" : "Container Storage",
         "pct_cpu" : "CPU",
         "pct_general" : "General Settings",
         "pct_memory" : "Memory",
         "pct_migration" : "Migration",
         "pct_mount_points" : "Mount Points",
         "pct_options" : "Options",
         "pct_settings" : "Container Settings",
         "pct_snapshots" : "Snapshots",
         "pct_startup_and_shutdown" : "Automatic Start and Shutdown of Containers",
         "pve_ceph_device_classes" : "Ceph CRUSH & device classes",
         "pve_ceph_install" : "Installation of Ceph Packages",
         "pve_ceph_install_wizard" : "Initial Ceph installation & configuration",
         "pve_ceph_manager" : "Ceph Manager",
         "pve_ceph_monitors" : "Ceph Monitor",
         "pve_ceph_osd_create" : "Create OSDs",
         "pve_ceph_osd_destroy" : "Destroy OSDs",
         "pve_ceph_osds" : "Ceph OSDs",
         "pve_ceph_pools" : "Ceph Pools",
         "pve_firewall_cluster_wide_setup" : "Cluster Wide Setup",
         "pve_firewall_default_rules" : "Default firewall rules",
         "pve_firewall_host_specific_configuration" : "Host Specific Configuration",
         "pve_firewall_ip_aliases" : "IP Aliases",
         "pve_firewall_ip_sets" : "IP Sets",
         "pve_firewall_ipfilter_section" : "Standard IP set `ipfilter-net*`",
         "pve_firewall_security_groups" : "Security Groups",
         "pve_firewall_vm_container_configuration" : "VM/Container Configuration",
         "pveceph_create_mgr" : "Create Manager",
         "pveceph_create_mon" : "Create Monitors",
         "pveceph_destroy_mgr" : "Destroy Manager",
         "pveceph_destroy_mon" : "Destroy Monitors",
         "pveceph_fs" : "CephFS",
         "pveceph_fs_create" : "Create CephFS",
         "pveceph_fs_mds" : "Metadata Server (MDS)",
         "pveceph_scrub" : "Scrub & Deep Scrub",
         "pvecm_adding_nodes_with_separated_cluster_network" : "Adding Nodes With Separated Cluster Network",
         "pvecm_cluster_create_via_cli" : "Create via Command Line",
         "pvecm_cluster_create_via_gui" : "Create via Web GUI",
         "pvecm_cluster_network_requirements" : "Network Requirements",
         "pvecm_corosync_addresses" : "Corosync addresses",
         "pvecm_corosync_conf_glossary" : "Corosync Configuration Glossary",
         "pvecm_create_cluster" : "Create a Cluster",
         "pvecm_edit_corosync_conf" : "Edit corosync.conf",
         "pvecm_join_node_to_cluster" : "Adding Nodes to the Cluster",
         "pvecm_redundancy" : "Corosync Redundancy",
         "pvecm_separate_cluster_net_after_creation" : "Separate After Cluster Creation",
         "pvecm_separate_node_without_reinstall" : "Separate A Node Without Reinstalling",
         "pvesdn_config_controllers" : "Controllers",
         "pvesdn_config_main_sdn" : "SDN",
         "pvesdn_config_vnet" : "VNets",
         "pvesdn_config_zone" : "Zones",
         "pvesdn_controller_plugin_evpn" : "EVPN Controller",
         "pvesdn_controller_plugins" : "Controllers Plugins",
         "pvesdn_installation" : "Installation",
         "pvesdn_local_deployment_monitoring" : "Local Deployment Monitoring",
         "pvesdn_setup_example_evpn" : "EVPN Setup Example",
         "pvesdn_setup_example_qinq" : "QinQ Setup Example",
         "pvesdn_setup_example_vlan" : "VLAN Setup Example",
         "pvesdn_setup_example_vxlan" : "VXLAN Setup Example",
         "pvesdn_zone_plugin_evpn" : "EVPN Zones",
         "pvesdn_zone_plugin_qinq" : "QinQ Zones",
         "pvesdn_zone_plugin_vlan" : "VLAN Zones",
         "pvesdn_zone_plugin_vxlan" : "VXLAN Zones",
         "pvesdn_zone_plugins" : "Zones Plugins",
         "pvesr_schedule_format_examples" : "Examples:",
         "pvesr_schedule_time_format" : "Schedule Format",
         "pveum_authentication_realms" : "Authentication Realms",
         "pveum_configure_u2f" : "Server side U2F configuration",
         "pveum_groups" : "Groups",
         "pveum_ldap_sync" : "Syncing LDAP-based realms",
         "pveum_ldap_sync_options" : "Options",
         "pveum_permission_management" : "Permission Management",
         "pveum_pools" : "Pools",
         "pveum_roles" : "Roles",
         "pveum_tfa_auth" : "Two-factor authentication",
         "pveum_tokens" : "API Tokens",
         "pveum_user_configured_totp" : "User configured TOTP authentication",
         "pveum_user_configured_u2f" : "Activating U2F as a user",
         "pveum_users" : "Users",
         "qm_audio_device" : "Audio Device",
         "qm_bios_and_uefi" : "BIOS and UEFI",
         "qm_bootorder" : "Device Boot Order",
         "qm_cloud_init" : "Cloud-Init Support",
         "qm_configuration" : "Configuration",
         "qm_copy_and_clone" : "Copies and Clones",
         "qm_cpu" : "CPU",
         "qm_cpu_resource_limits" : "Resource Limits",
         "qm_display" : "Display",
         "qm_general_settings" : "General Settings",
         "qm_hard_disk" : "Hard Disk",
         "qm_hard_disk_bus" : "Bus/Controller",
         "qm_hard_disk_cache" : "Cache Mode",
         "qm_hard_disk_discard" : "Trim/Discard",
         "qm_hard_disk_formats" : "Image Format",
         "qm_hard_disk_iothread" : "IO Thread",
         "qm_hibernate" : "Hibernation",
         "qm_ivshmem" : "Inter-VM shared memory",
         "qm_memory" : "Memory",
         "qm_migration" : "Migration",
         "qm_network_device" : "Network Device",
         "qm_options" : "Options",
         "qm_os_settings" : "OS Settings",
         "qm_pci_passthrough" : "PCI(e) Passthrough",
         "qm_pci_passthrough_vm_config" : "VM Configuration",
         "qm_snapshots" : "Snapshots",
         "qm_spice_enhancements" : "SPICE Enhancements",
         "qm_startup_and_shutdown" : "Automatic Start and Shutdown of Virtual Machines",
         "qm_system_settings" : "System Settings",
         "qm_templates" : "Virtual Machine Templates",
         "qm_usb_passthrough" : "USB Passthrough",
         "qm_virtio_rng" : "VirtIO RNG",
         "qm_virtual_machines_settings" : "Virtual Machines Settings",
         "storage_cephfs" : "Ceph Filesystem (CephFS)",
         "storage_cephfs_config" : "Configuration",
         "storage_cifs" : "CIFS Backend",
         "storage_directory" : "Directory Backend",
         "storage_glusterfs" : "GlusterFS Backend",
         "storage_iscsidirect" : "User Mode iSCSI Backend",
         "storage_lvm" : "LVM Backend",
         "storage_lvmthin" : "LVM thin Backend",
         "storage_nfs" : "NFS Backend",
         "storage_open_iscsi" : "Open-iSCSI initiator",
         "storage_pbs" : "Proxmox Backup Server",
         "storage_pbs_encryption" : "Encryption",
         "storage_rbd_config" : "Configuration",
         "storage_zfspool" : "Local ZFS Pool Backend",
         "sysadmin_certificate_management" : "Certificate Management",
         "sysadmin_certs_acme_account" : "ACME Account",
         "sysadmin_certs_acme_automatic_renewal" : "Automatic renewal of ACME certificates",
         "sysadmin_certs_acme_dns_api_config" : "Configuring ACME DNS APIs for validation",
         "sysadmin_certs_acme_dns_challenge" : "ACME DNS API Challenge Plugin",
         "sysadmin_certs_acme_http_challenge" : "ACME HTTP Challenge Plugin",
         "sysadmin_certs_acme_plugins" : "ACME Plugins",
         "sysadmin_certs_acme_switch_from_staging" : "Example: Switching from the `staging` to the regular ACME directory",
         "sysadmin_certs_api_gui" : "Certificates for API and Web GUI",
         "sysadmin_certs_get_trusted_acme_cert" : "Trusted certificates via Let's Encrypt (ACME)",
         "sysadmin_certs_upload_custom" : "Upload Custom Certificate",
         "sysadmin_enterprise_repo" : "Proxmox VE Enterprise Repository",
         "sysadmin_network_configuration" : "Network Configuration",
         "sysadmin_no_subscription_repo" : "Proxmox VE No-Subscription Repository",
         "sysadmin_package_repositories" : "Package Repositories",
         "sysadmin_package_repositories_ceph" : "Ceph Octopus Repository",
         "sysadmin_test_repo" : "Proxmox VE Test Repository",
         "sysadmin_zfs_add_cache_and_log_dev" : "Add cache and log to an existing pool",
         "sysadmin_zfs_change_failed_dev" : "Changing a failed device",
         "sysadmin_zfs_create_new_zpool" : "Create a new zpool",
         "sysadmin_zfs_create_new_zpool_raid0" : "Create a new pool with RAID-0",
         "sysadmin_zfs_create_new_zpool_raid1" : "Create a new pool with RAID-1",
         "sysadmin_zfs_create_new_zpool_raid10" : "Create a new pool with RAID-10",
         "sysadmin_zfs_create_new_zpool_raidz1" : "Create a new pool with RAIDZ-1",
         "sysadmin_zfs_create_new_zpool_with_cache" : "Create a new pool with cache (L2ARC)",
         "sysadmin_zfs_create_new_zpool_with_log" : "Create a new pool with log (ZIL)",
         "sysadmin_zfs_limit_memory_usage" : "Limit ZFS Memory Usage",
         "sysadmin_zfs_raid_considerations" : "ZFS RAID Level Considerations",
         "sysadmin_zfs_raid_performance" : "Performance",
         "sysadmin_zfs_raid_size_space_usage_redundancy" : "Size, Space usage and Redundancy",
         "sysadmin_zfs_special_device" : "ZFS Special Device",
         "sysboot" : "Host Bootloader",
         "sysboot_determine_bootloader_used" : "Determine which Bootloader is Used",
         "sysboot_edit_kernel_cmdline" : "Editing the Kernel Commandline",
         "sysboot_grub" : "Grub",
         "sysboot_installer_part_scheme" : "Partitioning Scheme Used by the Installer",
         "sysboot_systemd_boot" : "Systemd-boot",
         "sysboot_systemd_boot_config" : "Configuration",
         "translation" : "Translating Proxmox VE",
         "udp" : "   batch-timeout = \"1s\"",
         "vzdump_configuration" : "Configuration",
         "vzdump_restore" : "Restore",
         "vzdump_retention" : "Backup Retention",
         "zfs_compression" : "Compression in ZFS",
         "zfs_encryption" : "Encrypted ZFS Datasets",
         "zfs_swap" : "SWAP on ZFS"
      }
   },
   "titles" : {
      "default" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "certificate-management.adoc" : "Certificate Management",
         "cpu-models.conf.adoc" : "Custom CPU Model Configuration",
         "datacenter.cfg.adoc" : "Datacenter Configuration",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "High Availability",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "output-format.adoc" : "Output format options `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Proxmox Container Toolkit",
         "pct.conf.adoc" : "Container Configuration",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "Frequently Asked Questions",
         "pve-firewall.adoc" : "Proxmox VE Firewall",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "Cluster Resource Manager Daemon",
         "pve-ha-lrm.adoc" : "Local Resource Manager Daemon",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installing Proxmox VE",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "pve-storage-cephfs.adoc" : "Ceph Filesystem (CephFS)",
         "pve-storage-cifs.adoc" : "CIFS Backend",
         "pve-storage-dir.adoc" : "Directory Backend",
         "pve-storage-glusterfs.adoc" : "GlusterFS Backend",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "User Mode iSCSI Backend",
         "pve-storage-lvm.adoc" : "LVM Backend",
         "pve-storage-lvmthin.adoc" : "LVM thin Backend",
         "pve-storage-nfs.adoc" : "NFS Backend",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS Block Devices (RBD)",
         "pve-storage-zfspool.adoc" : "Local ZFS Pool Backend",
         "pve-system-requirements.adoc" : "System Requirements",
         "pveam.adoc" : "Container Images",
         "pveceph.adoc" : "Deploy Hyper-Converged Ceph Cluster",
         "pvecm.adoc" : "Cluster Manager",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API Daemon",
         "pvenode.adoc" : "Proxmox Node Management",
         "pveperf.adoc" : "pveperf - Proxmox VE Benchmark Script",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API Proxy Daemon",
         "pvesdn.adoc" : "Software Defined Network",
         "pvesh.adoc" : "Shell interface for the Proxmox VE API",
         "pvesm.adoc" : "Proxmox VE Storage",
         "pvesr.adoc" : "Storage Replication",
         "pvestatd.adoc" : "pvestatd - Proxmox VE Status Daemon",
         "pvesubscription.adoc" : "pvesubscription - Subscription Management",
         "pveum.adoc" : "User Management",
         "qm-cloud-init.adoc" : "Cloud-Init Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm.adoc" : "Qemu/KVM Virtual Machines",
         "qm.conf.adoc" : "Virtual Machine Configuration",
         "qmeventd.adoc" : "PVE Qemu Event Daemon",
         "qmrestore.adoc" : "Restore Virtual Machines",
         "spiceproxy.adoc" : "spiceproxy - SPICE Proxy Service",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "Backup and Restore"
      },
      "manvolnum" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "certificate-management.adoc" : "Certificate Management",
         "cpu-models.conf.adoc" : "cpu-models.conf(5)",
         "datacenter.cfg.adoc" : "datacenter.cfg(5)",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "ha-manager(1)",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "output-format.adoc" : "FORMAT_OPTIONS",
         "pct.adoc" : "pct(1)",
         "pct.conf.adoc" : "pct.conf(5)",
         "pmxcfs.adoc" : "pmxcfs(8)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "Frequently Asked Questions",
         "pve-firewall.adoc" : "pve-firewall(8)",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "pve-ha-crm(8)",
         "pve-ha-lrm.adoc" : "pve-ha-lrm(8)",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installing Proxmox VE",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "pve-storage-cephfs.adoc" : "Ceph Filesystem (CephFS)",
         "pve-storage-cifs.adoc" : "CIFS Backend",
         "pve-storage-dir.adoc" : "Directory Backend",
         "pve-storage-glusterfs.adoc" : "GlusterFS Backend",
         "pve-storage-iscsi.adoc" : "Open-iSCSI initiator",
         "pve-storage-iscsidirect.adoc" : "User Mode iSCSI Backend",
         "pve-storage-lvm.adoc" : "LVM Backend",
         "pve-storage-lvmthin.adoc" : "LVM thin Backend",
         "pve-storage-nfs.adoc" : "NFS Backend",
         "pve-storage-pbs.adoc" : "Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Ceph RADOS Block Devices (RBD)",
         "pve-storage-zfspool.adoc" : "Local ZFS Pool Backend",
         "pve-system-requirements.adoc" : "System Requirements",
         "pveam.adoc" : "pveam(1)",
         "pveceph.adoc" : "pveceph(1)",
         "pvecm.adoc" : "pvecm(1)",
         "pvedaemon.adoc" : "pvedaemon(8)",
         "pvenode.adoc" : "pvenode(1)",
         "pveperf.adoc" : "pveperf(1)",
         "pveproxy.adoc" : "pveproxy(8)",
         "pvesdn.adoc" : "Software Defined Network",
         "pvesh.adoc" : "pvesh(1)",
         "pvesm.adoc" : "pvesm(1)",
         "pvesr.adoc" : "pvesr(1)",
         "pvestatd.adoc" : "pvestatd(8)",
         "pvesubscription.adoc" : "pvesubscription(1)",
         "pveum.adoc" : "pveum(1)",
         "qm-cloud-init.adoc" : "Cloud-Init Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm.adoc" : "qm(1)",
         "qm.conf.adoc" : "qm.conf(5)",
         "qmeventd.adoc" : "qmeventd(8)",
         "qmrestore.adoc" : "qmrestore(1)",
         "spiceproxy.adoc" : "spiceproxy(8)",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "vzdump(1)"
      },
      "wiki" : {
         "GFDL.adoc" : "GNU Free Documentation License",
         "README.adoc" : "Proxmox VE Documentation",
         "certificate-management.adoc" : "Certificate Management",
         "cpu-models.conf.adoc" : "Manual: cpu-models.conf",
         "datacenter.cfg.adoc" : "Manual: datacenter.cfg",
         "getting-help.adoc" : "Getting Help",
         "ha-manager.adoc" : "High Availability",
         "howto-improve-pve-docs.adoc" : "Improving the Proxmox VE Documentation",
         "hyper-converged-infrastructure.adoc" : "Hyper-converged Infrastructure",
         "index.adoc" : "Proxmox VE Documentation Index",
         "local-lvm.adoc" : "Logical Volume Manager (LVM)",
         "local-zfs.adoc" : "ZFS on Linux",
         "output-format.adoc" : "Output format options `[FORMAT_OPTIONS]`",
         "pct.adoc" : "Linux Container",
         "pct.conf.adoc" : "Manual: pct.conf",
         "pmxcfs.adoc" : "Proxmox Cluster File System (pmxcfs)",
         "pve-admin-guide.adoc" : "Proxmox VE Administration Guide",
         "pve-bibliography.adoc" : "Bibliography",
         "pve-copyright.adoc" : "Copyright and Disclaimer",
         "pve-disk-health-monitoring.adoc" : "Disk Health Monitoring",
         "pve-external-metric-server.adoc" : "External Metric Server",
         "pve-faq.adoc" : "FAQ",
         "pve-firewall.adoc" : "Firewall",
         "pve-gui.adoc" : "Graphical User Interface",
         "pve-ha-crm.adoc" : "Cluster Resource Manager Daemon",
         "pve-ha-lrm.adoc" : "Local Resource Manager Daemon",
         "pve-installation-media.adoc" : "Prepare Installation Media",
         "pve-installation.adoc" : "Installation",
         "pve-intro.adoc" : "Introduction",
         "pve-network.adoc" : "Network Configuration",
         "pve-package-repos.adoc" : "Package Repositories",
         "pve-storage-cephfs.adoc" : "Storage: CephFS",
         "pve-storage-cifs.adoc" : "Storage: CIFS",
         "pve-storage-dir.adoc" : "Storage: Directory",
         "pve-storage-glusterfs.adoc" : "Storage: GlusterFS",
         "pve-storage-iscsi.adoc" : "Storage: iSCSI",
         "pve-storage-iscsidirect.adoc" : "Storage: User Mode iSCSI",
         "pve-storage-lvm.adoc" : "Storage: LVM",
         "pve-storage-lvmthin.adoc" : "Storage: LVM Thin",
         "pve-storage-nfs.adoc" : "Storage: NFS",
         "pve-storage-pbs.adoc" : "Storage: Proxmox Backup Server",
         "pve-storage-rbd.adoc" : "Storage: RBD",
         "pve-storage-zfspool.adoc" : "Storage: ZFS",
         "pve-system-requirements.adoc" : "System Requirements",
         "pveam.adoc" : "Container Images",
         "pveceph.adoc" : "Deploy Hyper-Converged Ceph Cluster",
         "pvecm.adoc" : "Cluster Manager",
         "pvedaemon.adoc" : "pvedaemon - Proxmox VE API Daemon",
         "pvenode.adoc" : "Proxmox Node Management",
         "pveperf.adoc" : "pveperf - Proxmox VE Benchmark Script",
         "pveproxy.adoc" : "pveproxy - Proxmox VE API Proxy Daemon",
         "pvesdn.adoc" : "Software Defined Network",
         "pvesh.adoc" : "Shell interface for the Proxmox VE API",
         "pvesm.adoc" : "Storage",
         "pvesr.adoc" : "Storage Replication",
         "pvestatd.adoc" : "pvestatd - Proxmox VE Status Daemon",
         "pvesubscription.adoc" : "pvesubscription - Subscription Management",
         "pveum.adoc" : "User Management",
         "qm-cloud-init.adoc" : "Cloud-Init Support",
         "qm-pci-passthrough.adoc" : "PCI(e) Passthrough",
         "qm.adoc" : "Qemu/KVM Virtual Machines",
         "qm.conf.adoc" : "Manual: qm.conf",
         "qmeventd.adoc" : "PVE Qemu Event Daemon",
         "qmrestore.adoc" : "Restore Virtual Machines",
         "spiceproxy.adoc" : "spiceproxy - SPICE Proxy Service",
         "sysadmin.adoc" : "Host System Administration",
         "system-booting.adoc" : "Host Bootloader",
         "system-software-updates.adoc" : "System Software Updates",
         "system-timesync.adoc" : "Time Synchronization",
         "translation.adoc" : "Translating Proxmox VE",
         "vxlan-and-evpn.adoc" : "VXLAN layer2 with vlan unware linux bridges",
         "vzdump.adoc" : "Backup and Restore"
      }
   },
   "toplevel" : {
      "default" : {
         "ha-manager.adoc" : 1,
         "pct.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-admin-guide.adoc" : 1,
         "pve-bibliography.adoc" : 1,
         "pve-faq.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-gui.adoc" : 1,
         "pve-installation.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvesdn.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pveum.adoc" : 1,
         "qm.adoc" : 1,
         "qmeventd.adoc" : 1,
         "sysadmin.adoc" : 1,
         "vzdump.adoc" : 1
      },
      "manvolnum" : {
         "cpu-models.conf.adoc" : 1,
         "datacenter.cfg.adoc" : 1,
         "ha-manager.adoc" : 1,
         "pct.adoc" : 1,
         "pct.conf.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-ha-crm.adoc" : 1,
         "pve-ha-lrm.adoc" : 1,
         "pveam.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvedaemon.adoc" : 1,
         "pvenode.adoc" : 1,
         "pveperf.adoc" : 1,
         "pveproxy.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pvestatd.adoc" : 1,
         "pvesubscription.adoc" : 1,
         "pveum.adoc" : 1,
         "qm.adoc" : 1,
         "qm.conf.adoc" : 1,
         "qmeventd.adoc" : 1,
         "qmrestore.adoc" : 1,
         "spiceproxy.adoc" : 1,
         "vzdump.adoc" : 1
      },
      "wiki" : {
         "certificate-management.adoc" : 1,
         "cpu-models.conf.adoc" : 1,
         "datacenter.cfg.adoc" : 1,
         "getting-help.adoc" : 1,
         "ha-manager.adoc" : 1,
         "howto-improve-pve-docs.adoc" : 1,
         "hyper-converged-infrastructure.adoc" : 1,
         "local-lvm.adoc" : 1,
         "local-zfs.adoc" : 1,
         "pct.adoc" : 1,
         "pct.conf.adoc" : 1,
         "pmxcfs.adoc" : 1,
         "pve-bibliography.adoc" : 1,
         "pve-disk-health-monitoring.adoc" : 1,
         "pve-external-metric-server.adoc" : 1,
         "pve-faq.adoc" : 1,
         "pve-firewall.adoc" : 1,
         "pve-gui.adoc" : 1,
         "pve-installation-media.adoc" : 1,
         "pve-installation.adoc" : 1,
         "pve-network.adoc" : 1,
         "pve-package-repos.adoc" : 1,
         "pve-storage-cephfs.adoc" : 1,
         "pve-storage-cifs.adoc" : 1,
         "pve-storage-dir.adoc" : 1,
         "pve-storage-glusterfs.adoc" : 1,
         "pve-storage-iscsi.adoc" : 1,
         "pve-storage-iscsidirect.adoc" : 1,
         "pve-storage-lvm.adoc" : 1,
         "pve-storage-lvmthin.adoc" : 1,
         "pve-storage-nfs.adoc" : 1,
         "pve-storage-pbs.adoc" : 1,
         "pve-storage-rbd.adoc" : 1,
         "pve-storage-zfspool.adoc" : 1,
         "pve-system-requirements.adoc" : 1,
         "pveceph.adoc" : 1,
         "pvecm.adoc" : 1,
         "pvenode.adoc" : 1,
         "pvesdn.adoc" : 1,
         "pvesh.adoc" : 1,
         "pvesm.adoc" : 1,
         "pvesr.adoc" : 1,
         "pveum.adoc" : 1,
         "qm-cloud-init.adoc" : 1,
         "qm-pci-passthrough.adoc" : 1,
         "qm.adoc" : 1,
         "qm.conf.adoc" : 1,
         "qmeventd.adoc" : 1,
         "sysadmin.adoc" : 1,
         "system-booting.adoc" : 1,
         "system-software-updates.adoc" : 1,
         "system-timesync.adoc" : 1,
         "translation.adoc" : 1,
         "vzdump.adoc" : 1
      }
   }
}
