puppet staging::deploy is not working on windows and saying unzip command not found -
i using staging::deploy in puppet script download , extract file below. , trying on windows.
staging::deploy{ "jdk1.7.0_04.zip": source => 'http://sometlocation/jdk1.7.0_04.zip', target => 'e:/puppettestdata', }
file download happening when staging::extract executed, getting below error.
error: not find command 'unzip'
i have installed unzip.exe on windows local still getting same error.
could suggest me solution problem?
make sure unzip.exe
file added path on windows. staging::deploy
makes use of facter fact path
:
exec{ path => $::path, ... }
to setup search path used command execution. here find more path parameter in exec
resource.
Comments
Post a Comment