I have a weird issue. I'm using puppet 3.2.3 and I have a simple module to
install an msi (module below).
If I run manually (from the start menu, or cmd using puppet agent - it
works fine and installs. If I let the 30 minute scheduled run happen - I
get "Storage to process this request is not available".
Does anyone have any ideas what could cause this? I don't see too much on
the net about it and for the life of me can't figure it out.
On a side note - every puppet run also seems to install notepad++ again (I
get a Package[np]/ensure: created - which also isn't ideal as it makes this
system always be in a changed state.
Any help people can give is appreciated.
class wintest {
if ($operatingsystem == 'windows') {
package { 'np':
ensure => installed,
source => '\\files\Software\temp\npp.6.3.2.installer.msi',
#provider => windows
}
}
else {
fail('This module is only supported on Windows')
}
}
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.