This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import hashlib | |
import logging | |
import boto | |
import config | |
import happybase | |
logger = logging.getLogger(__name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Day job: System Administration (with Devops tendencies). | |
What is your language of choice: Ruby (recently), Perl (traditionally). | |
Open Source contributions: Lots of little scripts, plugins, and so forth over the years. | |
How do you use GitHub: Handy way to maintain and distribute my modest contributions to the OSS community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'mysql' | |
require 'yaml' | |
require 'optparse' | |
def parse argv | |
env = {:path => 'check_repli.yml'} | |
env[:path] = ENV['CHECK_REPLI_CONFIG'] if ENV.include? 'CHECK_REPLI_CONFIG' |