Felix Frank
unread,Dec 12, 2014, 7:58:39 AM12/12/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to puppet...@googlegroups.com
On 12/10/2014 12:23 PM, cko wrote:
> /package { 'signotec WinUSB':/
> /ensure => '1.0.4',/
> /source => "E:/signotec_WinUSB_1.0.4_64Bit.exe",/
> /install_options => ['/S', '/vn'],/
> /}/
>
> Any ideas how to work around this issue?
Hi,
I don't really see how using `ensure => <version>` will have any effect
with this package, because you are installing from a local file with a
fixed version.
Have you considered resorting to an exec resource to perform the
installation for you? I assume that a well known file path is created
during installation, so you can use that to check (e.g. creates =>
'C:/Programs/...').
HTH,
Felix