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<-s>
50
51Connect to the Xenstore daemon using a local socket only.
52
53=item B<-u>
54
55Apply the permissions to the key and all its I<parents>.
56
57=back
58
59=head1 BUGS
60
61Send bugs to xen-devel@lists.xen.org, see
62http://wiki.xen.org/xenwiki/ReportingBugs on how to send bug reports.
63