This file contains hidden or 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
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 3/10/2012 | |
#################################### | |
HERE=$(pwd) | |
sudo apt-get update |
This file contains hidden or 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
from starcluster.clustersetup import ClusterSetup | |
from starcluster.logger import log | |
import subprocess | |
from starcluster import threadpool | |
from boto.route53.connection import Route53Connection | |
from boto.route53.connection import ResourceRecordSets | |
class Route53Plugin(ClusterSetup): | |
This file contains hidden or 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
from starcluster.clustersetup import ClusterSetup | |
from starcluster.logger import log | |
import subprocess | |
from starcluster import threadpool | |
class ChefPlugin(ClusterSetup): | |
def __init__(self, | |
run_list, | |
provision_host, |
This file contains hidden or 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
from starcluster.clustersetup import ClusterSetup | |
from starcluster.logger import log | |
import re | |
local_pe_attrs = { | |
'pe_name': 'local', | |
'slots': '999', | |
'user_lists': 'NONE', | |
'xuser_lists': 'NONE', | |
'start_proc_args': 'NONE', |
This file contains hidden or 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
# This creates upstream branches for all breanches in original repo | |
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY | |
# Don't we need to do fetch? | |
# In branch to merge | |
git checkout develop | |
git merge upstream/develop | |