如何从chef-recipe运行bash脚本文件

时间:2016-07-28 09:48:31

标签: chef chef-recipe

我想在下面的chef-recipe中实现逻辑。我怎么能实现这个

File=/tmp/productMain.param
if [ -f "${File}" ]; then
 if [ -f /tmp/monitor.sh ]; then
     echo "[INFO] configuration beeing processed"
     /tmp/monitor.sh $File
 else
    error "The monitor script doe not exit
    exit 1
 fi
else
  error "input file does not exist"
  exit 1
fi

1 个答案:

答案 0 :(得分:1)

看一下Chef文档,非常好,并举例说明如何使用bash资源:https://docs.chef.io/resource_bash.html