#
-# 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.
# limitations under the License.
#
-service "logstash-forwarder" do
- action [:disable, :stop]
-end
-
-file "/var/lib/logstash-forwarder/lumberjack.crt" do
- action :delete
-end
-
-package "logstash-forwarder" do
- action :purge
-end
-
require "yaml"
+include_recipe "apt"
+
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
content YAML.dump(node[:logstash][:forwarder].to_hash)
user "root"
group "root"
- mode 0o600
+ mode "600"
notifies :restart, "service[filebeat]"
end