/* ISC license. */ #include #include #include #include #include #include int s6rc_servicedir_block (char const *dir) { unsigned int dirlen = str_len(dir) ; s6_svstatus_t status ; char fn[dirlen + 6] ; if (!s6_svstatus_read(dir, &status)) return -1 ; byte_copy(fn, dirlen, dir) ; byte_copy(fn + dirlen, 6, "/down") ; if (!touch(fn)) return -1 ; if (s6_svc_writectl(dir, S6_SUPERVISE_CTLDIR, "O", 1) < 0) { register int e = errno ; unlink(fn) ; errno = e ; return -1 ; } return status.flagwantup ; }