5
0
mirror of git://git.proxmox.com/git/pve-docs.git synced 2025-03-19 18:50:06 +03:00

Escape curly brackets inside single quotes (')

text in backquotes (`) is not subject to asciidoc expansion but
text inside single quotes (') is

this behaviour led that '{vmid}' was somehow interpreted by asciidoc,
and the whole line was not not rendered

pveum.adoc was the only file with that problem as curly brackets
are inside backticks in the rest of the documentation
This commit is contained in:
Emmanuel Kasper 2016-09-08 11:51:46 +02:00 committed by Dietmar Maurer
parent 8e5f15bedc
commit 3b26ef9ed4

View File

@ -103,8 +103,8 @@ Objects and Paths
~~~~~~~~~~~~~~~~~
Access permissions are assigned to objects, such as a virtual machines
('/vms/{vmid}') or a storage ('/storage/{storeid}') or a pool of
resources ('/pool/{poolname}'). We use filesystem like paths to
('/vms/\{vmid\}') or a storage ('/storage/\{storeid\}') or a pool of
resources ('/pool/\{poolname\}'). We use filesystem like paths to
address those objects. Those paths form a natural tree, and
permissions can be inherited down that hierarchy.
@ -219,7 +219,7 @@ Pools
~~~~~
Pools can be used to group a set of virtual machines and data
stores. You can then simply set permissions on pools ('/pool/{poolid}'),
stores. You can then simply set permissions on pools ('/pool/\{poolid\}'),
which are inherited to all pool members. This is a great way simplify
access control.