Skip to content

Instantly share code, notes, and snippets.

<?php
$CONFIG = array (
'mail_domain' => '@mailDomain@',
'mail_smtpmode' => 'sendmail',
'datadirectory' => '@dataDir@',
'apps_paths' =>
array (
0 =>
array (
'path' => '@apps2Dir@',
@azazel75
azazel75 / ServerRack.py
Last active August 29, 2015 14:24 — forked from denik/ServerRack.py
# Class for managing multiple servers or anything with start() and stop() methods
class ServerRack(object):
def __init__(self, servers):
self.servers = servers
def start(self):
started = []
try: