diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2019-12-20 03:19:05 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2019-12-20 03:19:05 +0000 |
commit | 76c5586ea0b3b98ae42f2000c94c04297391f1af (patch) | |
tree | f9b76d645d6a5d1611864de64c0ca317385b4907 /src/supervision/s6-notifyoncheck.c | |
parent | 19ecbe91d2ef699f3d2a063c50cbff4d7e46eb1e (diff) | |
download | s6-76c5586ea0b3b98ae42f2000c94c04297391f1af.tar.xz |
Always execute execline scripts with -P
Diffstat (limited to 'src/supervision/s6-notifyoncheck.c')
-rw-r--r-- | src/supervision/s6-notifyoncheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supervision/s6-notifyoncheck.c b/src/supervision/s6-notifyoncheck.c index 71b562f..c8a0e19 100644 --- a/src/supervision/s6-notifyoncheck.c +++ b/src/supervision/s6-notifyoncheck.c @@ -75,7 +75,7 @@ int main (int argc, char const *const *argv, char const *const *envp) { ftrigr_t a = FTRIGR_ZERO ; iopause_fd x[2] = { { .events = IOPAUSE_READ }, { .events = IOPAUSE_READ } } ; - char const *childargv[4] = { EXECLINE_EXTBINPREFIX "execlineb", "-c", 0, 0 } ; + char const *childargv[4] = { EXECLINE_EXTBINPREFIX "execlineb", "-Pc", 0, 0 } ; char const *checkprog = 0 ; unsigned int fd ; int df = 0 ; |