-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Downloaded file name is not as the bzip2 file #80
Comments
Thanks for the comment , I try to see the input you send me and update my manifest according , its not looks like the problem solved : file { "/opt/capriza": puppi::netinstall { 'wkhtmltoimage': After running this one , I can not find the file he downloaded in my system , file name wkhtmltoimage-amd64 Is that what you mean by addressing me to the links ? |
This is an edge case because the tarball actually contains a single file postextract_command => 'cp /opt/capriza/wkhtmltoimage-amd64/usr/local/bin/wkhtmltopdf', # On Sun, Jul 21, 2013 at 3:40 PM, shyperets [email protected] wrote:
|
Thanks , Works ! |
Please try run the following manifest :
include puppi
file { "/opt/local/":
ensure => "directory",
owner => "root",
group => "root",
mode => 755,
}
puppi::netinstall { 'wkhtmltoimage-amd64':
url => 'https://wkhtmltopdf.googlecode.com/files/wkhtmltoimage-0.11.0_rc1-static-amd64.tar.bz2',
destination_dir => '/opt/local',
postextract_command => '/bin/cp /opt/local/wkhtmltoimage-amd64 /usr/local/bin/wkhtmltopdf',
}
Looks like its looking to chown to file which is not exists and after manipulating that , Its not running the post extract command .
Please help ,
The text was updated successfully, but these errors were encountered: