One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # Cassandra on EC2 using Apache Whirr trunk (18 January 2012) | |
| # Clone the repo from the Apache servers | |
| git clone git://git.apache.org/whirr.git | |
| cd whirr | |
| # build binary artefacts on your machine | |
| mvn clean install |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: redis | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts redis database system | |
| # Description: starts redis using basic start scripts |
| # This is an event.d (upstart) script to keep monit running. | |
| # To install disable the old way of doing things: | |
| # | |
| # /etc/init.d/monit stop && update-rc.d -f monit remove | |
| # | |
| # then put this script here: | |
| # | |
| # /etc/init/monit.conf | |
| # | |
| # and reload upstart configuration: |
| #!/usr/bin/env python | |
| """ | |
| HTTP Link Header Parsing | |
| Simple routines to parse and manipulate Link headers. | |
| """ | |
| __license__ = """ | |
| Copyright (c) 2009 Mark Nottingham |