19 lines
377 B
Ruby
19 lines
377 B
Ruby
# Create Link
|
|
link '/etc/prometheus_exporters.d/snmp.yml' do
|
|
to "#{node['snmp_exporter']['storage']}snmp.yml"
|
|
end
|
|
|
|
# Deploy `supervisord` config:
|
|
remote_file '/etc/supervisor/conf.d/snmp_exporter.conf' do
|
|
owner 'root'
|
|
group 'root'
|
|
mode '644'
|
|
|
|
notifies :restart, 'service[supervisor]'
|
|
end
|
|
|
|
# Restart the `supervisor`:
|
|
service 'supervisor' do
|
|
action :nothing
|
|
end
|