通过chef使用cygiwn执行shell脚本

时间:2016-06-09 10:40:40

标签: cygwin chef

无论如何我无法在windows中使用厨师在cygwin中执行shell脚本无论如何都要这样做吗?

1 个答案:

答案 0 :(得分:0)

您可以使用script资源并将interpreter属性设置为bash。只需确保命令bash在您的路径上。

script "test_module" do
  interpreter "bash"
  code <<-EOH
  echo 'Starting the script...'
  cp C:/Temp/testfile.txt C:/Temp/testfile2.txt 
EOH
end

这是在Windows 10上测试的。