1=head1 NAME
2
3xenstore-chmod - set the permissions of a Xenstore key
4
5=head1 SYNOPSIS
6
7B<xenstore-chmod> [I<OPTION>]... [I<KEY>] [I<PERM>]...
8
9=head1 DESCRIPTION
10
11Sets the permissions of the Xenstore I<KEY>.
12
13I<PERM> has the format I<LD>, where I<L> is a letter for the type of
14permission and I<D> is the corresponding domain ID.
15
16The types of permission are:
17
18=over
19
20=item B<r>
21
22read
23
24=item B<w>
25
26write
27
28=item B<b>
29
30read and write (both)
31
32=item B<n>
33
34no access
35
36=back
37
38The first permission entry is the domain owning the key (the owner)
39I<and> the permissions for any domain not explicitly listed in
40subsequent entries.  The key owner always has full access (read,
41write, and set permissions).
42
43=over
44
45=item B<-r>
46
47Apply the permissions to the key and all its I<children>.
48
49=item B<-u>
50
51Apply the permissions to the key and all its I<parents>.
52
53=back
54
55=head1 BUGS
56
57Send bugs to xen-devel@lists.xenproject.org, see
58https://wiki.xenproject.org/wiki/Reporting_Bugs_against_Xen_Project on how to send bug reports.
59