mirror of
https://github.com/NixOS/nix
synced 2025-06-27 16:51:15 +02:00
* Start of the setuid helper (the program that performs the operations
that have to be done as root: running builders under different uids, changing ownership of build results, and deleting paths in the store with the wrong ownership).
This commit is contained in:
parent
2b558843a2
commit
9f0efa6611
5 changed files with 18 additions and 4 deletions
8
src/nix-setuid-helper/Makefile.am
Normal file
8
src/nix-setuid-helper/Makefile.am
Normal file
|
@ -0,0 +1,8 @@
|
|||
libexec_PROGRAMS = nix-setuid-helper
|
||||
|
||||
nix_setuid_helper_SOURCES = main.cc
|
||||
nix_setuid_helper_LDADD = ../libutil/libutil.la \
|
||||
../boost/format/libformat.la ${aterm_lib}
|
||||
|
||||
AM_CXXFLAGS = \
|
||||
-I$(srcdir)/.. $(aterm_include) -I$(srcdir)/../libutil
|
3
src/nix-setuid-helper/main.cc
Normal file
3
src/nix-setuid-helper/main.cc
Normal file
|
@ -0,0 +1,3 @@
|
|||
int main(int argc, char * * argv)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue