Skip to content

Commit d81ef08

Browse files
committed
Merge pull request clusto#9 from plathrop/cage-object
Cage object
2 parents 38b97b6 + 91f73b7 commit d81ef08

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
clusto (0.5.34-1) unstable; urgency=low
2+
3+
* Add a BasicCage driver.
4+
* Packaging: Add missing dependency on python-setuptools.
5+
6+
-- Paul Lathrop <[email protected]> Tue, 28 Feb 2012 01:50:47 -0800
7+
18
clusto (0.5.33-2) unstable; urgency=low
29

310
* Clean up the Depends list in debian/control

debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Standards-Version: 3.7.2
77

88
Package: clusto
99
Architecture: any
10-
Depends: ${python:Depends}, ipython, python-sqlalchemy, python-ipy, python-webob, python-argparse
10+
Depends: ${python:Depends}, ipython, python-sqlalchemy, python-ipy, python-webob, python-argparse, python-setuptools
1111
Suggests: python-psycopg2, python-mysqldb, python-simplejson, python-sqlite, python-memcache
1212
Provides: ${python:Provides}
1313
Description: Clusto is a tool/library for organizing and managing infrastructure
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from clusto.drivers.locations.datacenters.basicdatacenter import *
2+
from clusto.drivers.locations.datacenters.basiccage import *
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# © 2012 Paul D. Lathrop
4+
# Author: Paul Lathrop <[email protected]>
5+
#
6+
7+
"""Clusto driver to represent a cage in a datacenter."""
8+
9+
from clusto.drivers.base import Location
10+
11+
class BasicCage(Location):
12+
"""
13+
Basic Cage driver.
14+
"""
15+
16+
_clusto_type = "cage"
17+
_driver_name = "basiccage"

0 commit comments

Comments
 (0)