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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -