You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a fresh PE 3.7.0 install, applying the 2 webhook classes from the "Running without mcollective" readme example, the peadmin-cert.pem file gets created after the webook.service tries to start.
I see the notify => Service['webhook'] line in r10k/webhook.pp but somehow the final ordering is incorrect:
Notice: Compiled catalog for localhost in environment production in 1.87 seconds
Warning: The package type's allow_virtual parameter will be changing its default value from false to true in a future release. If you do not want to allow virtual packages, please explicitly set allow_virtual to false.
(at /opt/puppet/lib/ruby/site_ruby/1.9.1/puppet/type/package.rb:430:in `block (3 levels) in <module:Puppet>')
Notice: /Stage[main]/R10k::Webhook::Config/File[webhook.yaml]/ensure: defined content as '{md5}56892e29ef349b136bc87a90ac2a03c0'
Notice: /Stage[main]/R10k::Webhook/File[/var/log/webhook]/ensure: created
Notice: /Stage[main]/R10k::Webhook/File[/var/run/webhook]/ensure: created
Notice: /Stage[main]/R10k::Webhook/Package[sinatra]/ensure: created
Notice: /Stage[main]/R10k::Webhook/File[webhook_init_script]/ensure: defined content as '{md5}a00a01080483a584413933000edad83e'
Notice: /Stage[main]/R10k::Webhook/File[webhook_bin]/ensure: defined content as '{md5}4fc99661c62c267609bd9507fbafcd71'
Error: Could not start Service[webhook]: Execution of '/usr/bin/systemctl start webhook' returned 1: Job for webhook.service failed. See 'systemctl status webhook.service' and 'journalctl -xn' for details.
Wrapped exception:
Execution of '/usr/bin/systemctl start webhook' returned 1: Job for webhook.service failed. See 'systemctl status webhook.service' and 'journalctl -xn' for details.
Error: /Stage[main]/R10k::Webhook/Service[webhook]/ensure: change from stopped to running failed: Could not start Service[webhook]: Execution of '/usr/bin/systemctl start webhook' returned 1: Job for webhook.service failed. See 'systemctl status webhook.service' and 'journalctl -xn' for details.
Notice: /Stage[main]/R10k::Webhook/Service[webhook]: Triggered 'refresh' from 2 events
Notice: /Stage[main]/R10k::Webhook/File[peadmin-cert.pem]/ensure: defined content as '{md5}79da222bdd112f5a0fd567be2a4d4dfc'
Notice: Finished catalog run in 13.92 seconds
Applying the classes again of course works since the file is now there ahead of service startup.
The text was updated successfully, but these errors were encountered:
Prior to this commit our statement was wrong, this was not noticed
expect for non-upgraded users using the latest versino of the module
Also the spec tests had a typo which let this split through and this
is corrected
On a fresh PE 3.7.0 install, applying the 2 webhook classes from the "Running without mcollective" readme example, the peadmin-cert.pem file gets created after the webook.service tries to start.
I see the
notify => Service['webhook']
line in r10k/webhook.pp but somehow the final ordering is incorrect:Applying the classes again of course works since the file is now there ahead of service startup.
The text was updated successfully, but these errors were encountered: