Skip to content

Instantly share code, notes, and snippets.

View ampledata's full-sized avatar

Greg Albrecht W2GMD ampledata

View GitHub Profile
apt_repository 'nodejs' do
action :add
uri 'http://ppa.launchpad.net/chris-lea/node.js/ubuntu'
distribution node['lsb']['codename']
components ['main']
key 'C7917B12'
keyserver 'keyserver.ubuntu.com'
end
['nodejs', 'nodejs-dev', 'npm', 'build-essential'].each do |pkg|
@ampledata
ampledata / gist:1428457
Created December 3, 2011 23:13
'save and test notification' JSON
{
"node": {
"status": "running",
"provider_id": "pa931001",
"tags": ["agent"],
"color": "#fffffff",
"ipaddress": "1.2.3.4",
"id": "n1ad8bdcc9",
"name": "test",
"private_ips": [],
@ampledata
ampledata / reload.rb
Created October 28, 2011 18:24
Reload Splunk Apps
#!/usr/bin/env ruby
#
# Reload Splunk Apps
#
# Author:: Greg Albrecht <gba@splunk.com>
require 'net/http'
require 'net/https'
@http = Net::HTTP.new('splunk.example.com', 8089)
{:period=>150000,
:type=>{:description=>"DISK", :code=>51},
:details=>{:path=>"/", :fs_critical=>95, :fs_warn=>90},
:threshold=>0,
:send_interval=>0,
:monitor_id=>"q86950d1e9",
:timeout=>100000}
@ampledata
ampledata / gist:1182528
Created August 31, 2011 00:36
for loop shortcut
for k in id_rsa test.pem; do
chmod 0400 $k
ssh-add $k
done
require 'rubygems'
require 'dynect_rest'
res = 'i-8bd180e5.example.com'
dyn = DynectRest.new("example", "me", "xxx", "example.com")
DynectRest::Resource.new(dyn, 'CNAMERecord', 'example.com').get(res)
[Wed, 01 Jun 2011 15:27:09 -0700] INFO: *** Chef 0.10.0 ***
[Wed, 01 Jun 2011 15:27:10 -0700] DEBUG: Building node object for jupiter.splunk.com
[Wed, 01 Jun 2011 15:27:10 -0700] DEBUG: Extracting run list from JSON attributes provided on command line
[Wed, 01 Jun 2011 15:27:10 -0700] INFO: Setting the run_list to ["recipe[git]"] from JSON
[Wed, 01 Jun 2011 15:27:10 -0700] DEBUG: Applying attributes from json file
[Wed, 01 Jun 2011 15:27:10 -0700] DEBUG: Platform is mac_os_x version 10.6.7
[Wed, 01 Jun 2011 15:27:10 -0700] INFO: Run List is [recipe[git]]
[Wed, 01 Jun 2011 15:27:10 -0700] INFO: Run List expands to [git]
[Wed, 01 Jun 2011 15:27:10 -0700] INFO: Starting Chef Run for jupiter.splunk.com
[Wed, 01 Jun 2011 15:27:10 -0700] DEBUG: No chefignore file found at /Users/gba/src/chef/cookbooks/chefignore no files will be ignored
require 'rubygems'
require 'cloudkick'
require 'json'
require 'timeout'
module MC
class CloudkickHandler < Chef::Handler
CHECK_NAME = 'chef-clientRun'
TIMEOUT = 10
@ampledata
ampledata / cloudkick-update_status.rb
Created March 23, 2011 23:37
Cloudkick 'check' status update script in a few lines of ruby.
require 'rubygems'
require 'oauth'
require 'openssl'
# your OAuth consumer credentials.
# https://support.cloudkick.com/API/Authentication#Generating_OAuth_Consumers
CONSUMER_KEY = 'xxx'
CONSUMER_SECRET = 'yyy'
node_id='n359b40753' # your node_id
#include <string.h>
#include <stdio.h>
#include "handler.h"
void handle_request(int sockfd, const char *request)
{
int i;
int b;
char path[16];