Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The following is an example Chef Recipe for installing SPM client.

# Author: Charles Sullivan (charles@fullcontact.com)
# Based on: https://gist.github.com/CharlieSu/6195243
if node.spm[:token]  # Will only run if a SPM token is present.
  apt_repository "sematext" do
    action :add
    uri "http://pub-repo.sematext.com/ubuntu"
    distribution node['lsb']['codename']
    components ["main"]
    key "http://pub-repo.sematext.com/ubuntu/sematext.gpg.key"
    notifies :run, "execute[apt-get update]", :immediately
  end
 
  package "spm-client"
 
  service "spm-monitor" do
    action :nothing
  end
 
  bash "spm-client-setup-conf.sh" do
    user "root"
    cwd "/tmp"
    code "bash /opt/spm/bin/spm-client-setup-conf.sh #{node.spm[:token]} es standalone"
    creates "/opt/spm/spm-monitor/conf/spm-monitor-config-#{node.spm[:token]}-default.properties"
    notifies :restart, "service[spm-monitor]"
  end
  
end

Notes:

 

  • No labels