Skip to content

Instantly share code, notes, and snippets.

View rchrd2's full-sized avatar

Richard Caceres rchrd2

View GitHub Profile
"""
A pretty nice time parsing regex.
@author Richard Caceres, @rchrd2
"""
import re
# The history for this regex is stored in my gist
# https://gist.github.com/rchrd2/9773922
time_range_regex = re.compile(r'''
@rchrd2
rchrd2 / Procfile
Last active August 29, 2015 13:58
Procfile for gulp + python server in ./public
# Run with "foreman start"
gulp: gulp
server: sh -c 'cd public && python -m SimpleHTTPServer 9876'
@rchrd2
rchrd2 / bootstrap_puppet.sh
Last active August 29, 2015 14:02
First steps to setup a new puppet agent
# Install NTP for clock syncing
apt-get install -y ntp
/etc/init.d/ntp start
# Install Puppet from official packages
cd
mkdir source
cd source
sudo wget http://apt.puppetlabs.com/puppetlabs-release-precise.deb
sudo dpkg -i puppetlabs-release-precise.deb
@rchrd2
rchrd2 / gist:e5810e7fa15b7beb713d
Created June 19, 2014 04:20
/etc/nagios3/conf.d/localhost_nagios2.cfg
# A simple configuration file for monitoring the local host
# This can serve as an example for configuring other servers;
# Custom services specific to this host are added here, but services
# defined in nagios2-common_services.cfg may also apply.
#
define host{
use generic-host ; Name of host template to use
host_name localhost
alias localhost
@rchrd2
rchrd2 / check_redis_llen.sh
Created June 21, 2014 19:57
Nagios check_redis_llen.sh
#!/bin/bash
# A simple nagios check for Redis set length
#
# It doesn't require any redis libraries and uses the raw api
#
# @author Richard Caceres (me@rchrd.net)
# @license MIT
# @example check_redis_llen -c 50 -w 10 -k celery -h localhost -p 6379
# Parse -c -w args
@rchrd2
rchrd2 / pull-changes.pp
Created June 22, 2014 21:21
example puppet unless for git changes
exec { 'pull-changes':
# This unless command makes it so this exec only runs when the branch is behind the head
unless => [
"/bin/bash -c 'cd /var/www/django/django \
&& CURRBRANCH=$(/usr/bin/git rev-parse --abbrev-ref HEAD)\
&& /usr/bin/git fetch origin \$CURRBRANCH \
&& /usr/bin/git rev-list HEAD...origin/\$CURRBRANCH --count'\
| /bin/grep '0'"
],
@rchrd2
rchrd2 / repo.pp
Last active August 29, 2015 14:02
Continuous integration with Puppet and Github.com
# Clones a repository from our github
# Info: https://github.com/puppetlabs/puppetlabs-vcsrepo/blob/master/README.GIT.markdown
class web::repo ($revision, $latest=false) {
# Git is used to install our repositories
ensure_resource('package', 'git', {'ensure' => 'present'})
class { 'ssh::client':
storeconfigs_enabled => false,
@rchrd2
rchrd2 / sshd_config
Last active August 29, 2015 14:03
Enable SSH Tunneling
# Enable ssh tunneling on remote server
GatewayPorts yes
ClientAliveInterval 30
ClientAliveCountMax 99999
# Example tunnel from local server
# $ ssh -R8081:127.0.0.1:8080 root@example.com
# $ curl example.com:8081
@rchrd2
rchrd2 / celery_wrapper.sh
Created December 6, 2014 02:50
celery_wrapper.sh
#!/bin/bash
generic_handler () {
kill -s $1 $PID
while kill -0 $PID &>/dev/null
do
wait $PID
done
}
@rchrd2
rchrd2 / install_puppet_modules.sh
Created December 16, 2014 23:38
install_puppet_modules.sh
#!/bin/bash
# This is a little script that will install the required puppet modules.
# It was written to help setup vagrant. It is called as a provision script.
#
# # This installs the modules
# config.vm.provision :shell do |shell|
# shell.path = "./puppet/install_puppet_modules.sh"
# end
#