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
{{ message }}
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
Not exactly sure whats going on here but on RHEL 7 I am seeing on every puppet run the uchiwa service trying to be enabled for boot. In order to fix the problem I set the class to stop managing its services and did my own notify and service declaration:
class { '::uchiwa':
install_repo => false,
user => 'sensu',
pass => 'sensu',
port => '3000',
sensu_api_endpoints => $uchiwa_api_config,
manage_services => false,
notify => Service['uchiwa'],
}
service { ['uchiwa']:
ensure => 'running',
enable => true,
provider => 'redhat',
}
Also as a side note init.pp has better documentation then the readme file does. It would be cool if that could get ported over or at least an FYI stating there is more info there.
The text was updated successfully, but these errors were encountered:
Not exactly sure whats going on here but on RHEL 7 I am seeing on every puppet run the uchiwa service trying to be enabled for boot. In order to fix the problem I set the class to stop managing its services and did my own notify and service declaration:
https://github.com/Yelp/puppet-uchiwa/blob/master/manifests/service.pp
Also as a side note init.pp has better documentation then the readme file does. It would be cool if that could get ported over or at least an FYI stating there is more info there.
The text was updated successfully, but these errors were encountered: