From 96cd0d966a8bc0daad9ec3e18f00e69623f1b5db Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 20 Jan 2026 08:33:43 +0000 Subject: Invoke s6-ftrigrd with a full environment That helps when LD_LIBRARY_PATH is necessary. --- COPYING | 2 +- INSTALL | 4 ++-- NEWS | 6 ++++++ doc/index.html | 8 ++++---- doc/upgrade.html | 9 +++++++++ package/info | 2 +- src/libs6/ftrigr_startf.c | 5 +++-- 7 files changed, 26 insertions(+), 10 deletions(-) diff --git a/COPYING b/COPYING index 1a9e8a2..2b1da03 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2011-2025 Laurent Bercot +Copyright (c) 2011-2026 Laurent Bercot Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/INSTALL b/INSTALL index 7babe95..dd6bdaf 100644 --- a/INSTALL +++ b/INSTALL @@ -6,8 +6,8 @@ Build Instructions - A POSIX-compliant C development environment - GNU make version 3.81 or later - - skalibs version 2.14.5.0 or later: https://skarnet.org/software/skalibs/ - - Recommended: execline version 2.9.8.0 or later: https://skarnet.org/software/execline/ + - skalibs version 2.14.5.1 or later: https://skarnet.org/software/skalibs/ + - Recommended: execline version 2.9.8.1 or later: https://skarnet.org/software/execline/ (You can disable this requirement at configure time, but will lose some functionality.) - Optional: nsss version 0.2.1.1 or later: https://skarnet.org/software/nsss/ diff --git a/NEWS b/NEWS index 0b007e0..061674f 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ Changelog for s6. +In 2.14.0.1 +----------- + + - Bugfixes. + + In 2.14.0.0 ----------- diff --git a/doc/index.html b/doc/index.html index 1725a9b..feb99e9 100644 --- a/doc/index.html +++ b/doc/index.html @@ -83,12 +83,12 @@ with s6
  • A POSIX-compliant system with a standard C development environment
  • GNU make, version 3.81 or later
  • skalibs version -2.14.5.0 or later. It's a build-time requirement. It's also a run-time +2.14.5.1 or later. It's a build-time requirement. It's also a run-time requirement if you link against the shared version of the skalibs library.
  • (Optional, but really recommended for full functionality): execline version -2.9.8.0 or later. When s6 is built with execline support (which is the default), +2.9.8.1 or later. When s6 is built with execline support (which is the default), execline is a build-time requirement, and also a run-time requirement for certain binaries that spawn scripts interpreted with execlineb.
  • @@ -115,8 +115,8 @@ want nsswitch-like functionality:

    Download

      -
    • The current released version of s6 is 2.14.0.0. -You can access its checksum here.
    • +
    • The current released version of s6 is 2.14.0.1. +You can access its checksum here.
    • Alternatively, you can checkout a copy of the s6 git repository: diff --git a/doc/upgrade.html b/doc/upgrade.html index 5108256..ce8d682 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -18,6 +18,15 @@

      What has changed in s6

      +

      in 2.14.0.1

      + +
        +
      • skalibs +dependency bumped to 2.14.5.1.
      • +
      • execline +recommended dependency bumped to 2.9.8.1.
      • +
      +

      in 2.14.0.0

        diff --git a/package/info b/package/info index 31f9e23..8c56c0c 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=s6 -version=2.14.0.0 +version=2.14.0.1 category=admin package_macro_name=S6 diff --git a/src/libs6/ftrigr_startf.c b/src/libs6/ftrigr_startf.c index 5d2ce16..bc503ba 100644 --- a/src/libs6/ftrigr_startf.c +++ b/src/libs6/ftrigr_startf.c @@ -1,11 +1,12 @@ /* ISC license. */ +#include #include + #include int ftrigr_startf (ftrigr_t *a, tain const *deadline, tain *stamp) { static char const *const cargv[2] = { FTRIGRD_PROG, 0 } ; - static char const *const cenvp[1] = { 0 } ; - return textclient_startf(&a->connection, cargv, cenvp, TEXTCLIENT_OPTION_WAITPID, FTRIGR_BANNER1, FTRIGR_BANNER1_LEN, FTRIGR_BANNER2, FTRIGR_BANNER2_LEN, deadline, stamp) ; + return textclient_startf(&a->connection, cargv, (char const *const *)environ, TEXTCLIENT_OPTION_WAITPID, FTRIGR_BANNER1, FTRIGR_BANNER1_LEN, FTRIGR_BANNER2, FTRIGR_BANNER2_LEN, deadline, stamp) ; } -- cgit v1.3.1