SaltStack公式中的手动批准

问题描述 投票:0回答:1

我使用salt运行特定脚本,并根据此脚本的日志输出,我需要选择是否继续盐公式中的其他任务。是否有可能要求用户批准盐公式。基本上我需要像bash这样的代码片段:

echo "Proceed with copying users?(yes|no)"
read reply
if [ $reply == 'no' ]
then
    exit
fi
devops salt-stack
1个回答
0
投票

你可以provide input using stdin

stdin(str) - 可以使用stdin参数为要运行的命令指定一串标准输入。在必须从标准输入读取敏感信息的情况下,这可能很有用。

你也可以将输入回显到脚本中,

echo "some value" | script
© www.soinside.com 2019 - 2024. All rights reserved.