Hello,
Even with the service set to stopped, I have a windows puppet agent
that seems to be applying its catalog trying to install
puppet-3.2.3.msi over and over every minute. There are ruby processes
in tasklist, and killing them helps, but the problem persists if the
service restarts.
Where might I look to troubleshoot? I originally installed puppet
3.2.2 on this machine, then thought I upgraded successfully to 3.2.3.
The manifest is trivial:
class puppet_client_win {
package { 'puppet':
ensure => installed,
source => 'http://sv-mgmt6/windows/puppet-3.2.3.msi',
notify => Service['puppet'],
}
service { 'puppet':
ensure => 'running',
#enabled => true,
subscribe => File['C:\ProgramData\PuppetLabs\puppet\etc\puppet.conf'],
}
file { 'C:\ProgramData\PuppetLabs\puppet\etc\puppet.conf':
ensure => present,
content => template('puppet_client_win/puppet.conf.erb'),
}
}
--
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.