s6

Mirror/fork of https://skarnet.org/software/s6/
git clone https://ccx.te2000.cz/git/s6
Log | Files | Refs | README | LICENSE

commit ddb2bdb9268af76890d657dca80e288cc11913a0
parent 6f8c6226478c1ea46e1b215f075ce8a22867172a
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Sun,  7 Dec 2014 14:31:03 +0000

Make ./event subdir private with s6-supervise's gid instead of public by default

Diffstat:
Msrc/supervision/s6-supervise.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/supervision/s6-supervise.c b/src/supervision/s6-supervise.c @@ -448,7 +448,7 @@ int main (int argc, char const *const *argv) PROG = progname ; if (!fd_sanitize()) strerr_diefu1sys(111, "sanitize stdin and stdout") ; x[1].fd = s6_supervise_lock(S6_SUPERVISE_CTLDIR) ; - if (!ftrigw_fifodir_make(S6_SUPERVISE_EVENTDIR, -1, 0)) + if (!ftrigw_fifodir_make(S6_SUPERVISE_EVENTDIR, getegid(), 0)) strerr_diefu2sys(111, "mkfifodir ", S6_SUPERVISE_EVENTDIR) ; x[0].fd = selfpipe_init() ; if (x[0].fd == -1) strerr_diefu1sys(111, "init selfpipe") ;