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
# Custom visudo entries : | |
# ----------------------- | |
# Defaults:florian env_keep=HTTP_PROXY | |
# %florian ALL = NOPASSWD: /usr/bin/lxc-* | |
# Starts a container | |
function cstart() { | |
for container in "$@" | |
do | |
sudo lxc-start -n $container -d |
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 flask import Flask | |
from flask import render_template | |
from flask.ext.script import Manager | |
from mease import Mease | |
from mease.backends.redis import RedisBackend | |
mease = Mease(RedisBackend, {}) | |
app = Flask(__name__) |