]> git.proxmox.com Git - pve-container.git/commitdiff
docs: update mountpoint descriptions
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 7 Jun 2016 09:11:02 +0000 (11:11 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 7 Jun 2016 09:32:33 +0000 (11:32 +0200)
src/PVE/LXC/Config.pm

index 6b4ec4c3cd4792486b8593137ee945d2417c4270..d80dae01364d38abedceb4890924fee7c9926fdb 100644 (file)
@@ -208,7 +208,7 @@ my $rootfs_desc = {
     },
     ro => {
        type => 'boolean',
-       description => 'Read-only mountpoint (not supported with bind mounts)',
+       description => 'Read-only mountpoint',
        optional => 1,
     },
     quota => {
@@ -543,6 +543,8 @@ my $mp_desc = {
     backup => {
        type => 'boolean',
        description => 'Whether to include the mountpoint in backups.',
+       verbose_description => 'Whether to include the mountpoint in backups '.
+                              '(only used for volume mountpoints).',
        optional => 1,
     },
     mp => {
@@ -550,6 +552,8 @@ my $mp_desc = {
        format => 'pve-lxc-mp-string',
        format_description => 'Path',
        description => 'Path to the mountpoint as seen from inside the container.',
+       verbose_description => "Path to the mountpoint as seen from inside the container.\n\n".
+                              "WARNING: Must not contain any symlinks for security reasons."
     },
 };
 PVE::JSONSchema::register_format('pve-ct-mountpoint', $mp_desc);