logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

0store-secure-add — add an implementation to the system cache

Author

       Zero Install was created by Thomas Leonard.

Bugs

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

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

       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.

       Please report bugs to the developer mailing list:

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

Description

       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.

       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.

       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.

Files

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

License

       Copyright (C) 2009 Thomas Leonard.

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

Name

       0store-secure-add — add an implementation to the system cache

See Also

0store(1)

       The Zero Install web-site:

       http://0install.net

Thomas Leonard                                        2010                                  0STORE-SECURE-ADD(1)

Setting Up Sharing

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

       Create a new system user to own the cache:

       adduser--systemzeroinst

       Create the shared directory, owned by this new user:

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

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

       Defaults>zeroinstenv_reset,always_set_homeALLALL=(zeroinst)NOPASSWD:/usr/bin/0store-secure-add

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

       #!/bin/shexecsudo-S-uzeroinst/usr/bin/0store-secure-add"$@"</dev/null

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

Synopsis

0store-secure-addDIGEST

See Also