aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@citrix.com>2013-07-04 15:25:27 +0100
committerIan Jackson <Ian.Jackson@eu.citrix.com>2013-07-12 14:17:15 +0100
commitcd79a9bf3613b249bbca8aeded309cbd701f9ce1 (patch)
tree1a60d23930c9f23092ea2ed4fb0755278c2be1e4 /docs
parent8cb199926cb71ef5863add46f42c5ab3cef8ea09 (diff)
downloadxen-cd79a9bf3613b249bbca8aeded309cbd701f9ce1.tar.gz
xen-cd79a9bf3613b249bbca8aeded309cbd701f9ce1.tar.bz2
xen-cd79a9bf3613b249bbca8aeded309cbd701f9ce1.zip
docs: add xenstore-chmod man page
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/man/xenstore-chmod.pod.162
1 files changed, 62 insertions, 0 deletions
diff --git a/docs/man/xenstore-chmod.pod.1 b/docs/man/xenstore-chmod.pod.1
new file mode 100644
index 0000000000..cb1dc2ef82
--- /dev/null
+++ b/docs/man/xenstore-chmod.pod.1
@@ -0,0 +1,62 @@
+=head1 NAME
+
+xenstore-chmod - set the permissions of a Xenstore key
+
+=head1 SYNOPSIS
+
+B<xenstore-chmod> [I<OPTION>]... [I<KEY>] [I<PERM>]...
+
+=head1 DESCRIPTION
+
+Sets the permissions of the Xenstore I<KEY>.
+
+I<PERM> has the format I<LD>, where I<L> is a letter for the type of
+permission and I<D> is the corresponding domain ID.
+
+The types of permission are:
+
+=over
+
+=item B<r>
+
+read
+
+=item B<w>
+
+write
+
+=item B<b>
+
+read and write (both)
+
+=item B<n>
+
+no access
+
+=back
+
+The first permission entry is the domain owning the key (the owner)
+I<and> the permissions for any domain not explicitly listed in
+subsequent entries. The key owner always has full access (read,
+write, and set permissions).
+
+=over
+
+=item B<-r>
+
+Apply the permissions to the key and all its I<children>.
+
+=item B<-s>
+
+Connect to the Xenstore daemon using a local socket only.
+
+=item B<-u>
+
+Apply the permissions to the key and all its I<parents>.
+
+=back
+
+=head1 BUGS
+
+Send bugs to xen-devel@lists.xen.org, see
+http://wiki.xen.org/xenwiki/ReportingBugs on how to send bug reports.