X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/45a4c210d219a5e2f4904517ca4c7eaecc072704..29b8151b8011f934785f3434e3826eee78e61943:/cookbooks/logstash/recipes/forwarder.rb?ds=sidebyside diff --git a/cookbooks/logstash/recipes/forwarder.rb b/cookbooks/logstash/recipes/forwarder.rb index aa1dfc1ae..2184da048 100644 --- a/cookbooks/logstash/recipes/forwarder.rb +++ b/cookbooks/logstash/recipes/forwarder.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: logstash +# Cookbook:: logstash # Recipe:: default # -# Copyright 2015, OpenStreetMap Foundation +# Copyright:: 2015, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,13 +19,15 @@ require "yaml" +include_recipe "apt::elasticsearch8" + package "filebeat" cookbook_file "/etc/filebeat/filebeat.crt" do source "beats.crt" user "root" group "root" - mode 0o600 + mode "600" notifies :restart, "service[filebeat]" end @@ -33,7 +35,7 @@ file "/etc/filebeat/filebeat.yml" do content YAML.dump(node[:logstash][:forwarder].to_hash) user "root" group "root" - mode 0o600 + mode "600" notifies :restart, "service[filebeat]" end