puppet staging::deploy 没有在 windows 上工作并且说找不到解压缩命令
puppet staging::deploy is not working on windows and saying unzip command not found
我在我的 puppet 脚本中使用 staging::deploy 来下载和提取文件,如下所示。我正在 windows.
上尝试这个
staging::deploy{ "jdk1.7.0_04.zip":
source => 'http://sometlocation/jdk1.7.0_04.zip',
target => 'E:/PuppetTestData',
}
正在下载文件,但是当执行 staging::extract 时,出现以下错误。
Error: Could not find command 'unzip'
我已经在我的 windows 本地安装了 unzip.exe,但我仍然遇到同样的错误。
谁能建议我解决这个问题的方法?
确保 unzip.exe
文件已添加到 Windows 上的 PATH 中。
staging::deploy
使用 factor fact path
:
Exec{
path => $::path,
...
}
设置用于命令执行的搜索路径。在这里,您可以在 exec
资源中找到有关 path 参数的更多信息。
我在我的 puppet 脚本中使用 staging::deploy 来下载和提取文件,如下所示。我正在 windows.
上尝试这个staging::deploy{ "jdk1.7.0_04.zip":
source => 'http://sometlocation/jdk1.7.0_04.zip',
target => 'E:/PuppetTestData',
}
正在下载文件,但是当执行 staging::extract 时,出现以下错误。
Error: Could not find command 'unzip'
我已经在我的 windows 本地安装了 unzip.exe,但我仍然遇到同样的错误。
谁能建议我解决这个问题的方法?
确保 unzip.exe
文件已添加到 Windows 上的 PATH 中。
staging::deploy
使用 factor fact path
:
Exec{
path => $::path,
...
}
设置用于命令执行的搜索路径。在这里,您可以在 exec
资源中找到有关 path 参数的更多信息。