File: 0store-secure-add.1

package info (click to toggle)
zeroinstall-injector 2.12-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,148 kB
  • ctags: 3,348
  • sloc: ml: 25,069; xml: 2,610; ansic: 227; sh: 196; makefile: 136; python: 105
file content (104 lines) | stat: -rw-r--r-- 2,621 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.TH 0STORE\-SECURE\-ADD 1 "2010" "Thomas Leonard" ""
.SH NAME
0store\-secure\-add \(em add an implementation to the system cache

.SH SYNOPSIS

.B 0store\-secure\-add
\fBDIGEST\fP

.SH DESCRIPTION
.PP
This command imports the current directory into the system-wide shared Zero
Install cache, as /var/cache/0install.net/implementations/DIGEST.
This allows a program downloaded by one user to be shared with other users.

.PP
The current directory must contain a file called '.manifest' listing all the
files to be added (in the format required by DIGEST), and this file must have the
given digest. If not, the import is refused. Therefore, it is only possible to
add a directory to the cache if its name matches its contents.

.PP
It is intended that it be safe to grant untrusted users permission to call
this command with elevated privileges. To set this up, see below.

.SH SETTING UP SHARING

To enable sharing, the system administrator should follow these steps:

.PP
Create a new system user to own the cache:

.B adduser \-\-system zeroinst

.PP
Create the shared directory, owned by this new user:

.B mkdir /var/cache/0install.net

.B chown zeroinst /var/cache/0install.net

.P
Use visudo(8) to add these lines to /etc/sudoers:

.B Defaults>zeroinst env_reset,always_set_home

.B ALL     ALL=(zeroinst) NOPASSWD: /usr/bin/0store\-secure\-add

.P
Create a script called
.B 0store\-secure\-add\-helper
in PATH to call it. This script must be executable and contain these two lines:

.B
#!/bin/sh

.B
exec sudo \-S \-u zeroinst /usr/bin/0store\-secure\-add "$@" < /dev/null

.P
The other Zero Install programs will call this helper script automatically.

.SH FILES

.IP "/var/cache/0install.net/implementations"
System-wide Zero Install cache.

.SH LICENSE
.PP
Copyright (C) 2009 Thomas Leonard.

.PP
You may redistribute copies of this program under the terms of the GNU Lesser General Public License.

.SH BUGS
.PP
This program is EXPERIMENTAL. It has not been audited. Do not use it yet in
security-critial environments.

.PP
The env_reset line in sudoers may not be required. sudo(1) seems to do it automatically.

.PP
If sudo let us check whether we could call a command then we could switch to
using it automatically, instead of needing to add the helper script. Currently,
sudo delays for one second and writes to auth.log if we try to use this system
when it hasn't been set up.

.PP
Please report bugs to the developer mailing list:

http://0install.net/support.html

.SH AUTHOR
.PP
Zero Install was created by Thomas Leonard.

.SH SEE ALSO
0store(1)

.PP
The Zero Install web-site:

.B http://0install.net