s6 主管:无法使用 s6-envdir 设置的变量

s6 主管:无法使用 s6-envdir 设置的变量

我正在尝试理解 s6 主管套件。我已经弄清楚了运行和日志,但我被 s6-envdir 困住了,我不确定如何使用它。

我看到环境变量已设置,但我无法访问它。

为了显示:

# According to the docs, set a variable
cat /local/s6/services/ping_stdout/env/PING_HOST
ya.ru
# Make sure there's no such variable in my current env
env | grep PING_HOST
echo $?
1
# Make sure it gets exported if I use s6-envdir
s6-envdir /local/s6/services/ping_stdout/env env | grep PING_HOST
PING_HOST=ya.ru
# Now try to get it printed
s6-envdir /local/s6/services/ping_stdout/env echo "=== ${PING_HOST} ==="
===  ===

它没有被使用,但是如果我尝试使用已经存在于我的环境中的东西,则没有问题:

s6-envdir /local/s6/services/ping_stdout/env echo "=== ${ZSH} ==="
=== /home/hoodoo/.oh-my-zsh ===

我是不是理解错了什么?

如何使用 s6-envdir 设置的变量?

答案1

这是正确的形式:

s6-envdir /local/s6/services/ping_stdout/env sh -c 'echo === ${PING_HOST} ==='

您需要启动一个子 shell,它将查看所​​配置的环境变量 s6-envdir。您还需要单引号以确保子 shell 将执行替换并打印变量。

如果你启动一个守护进程它应该是这样的:

s6-envdir /local/s6/services/ping_stdout/env sh -c 'exec /full/path/to/your/executable'

exec必需的,这样就不会有剩余的额外 shell。这是必需的,以确保您直接通过 s6 向进程发出信号。

相关内容