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
| [10gen] | |
| name=10gen Repository | |
| baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 | |
| gpgcheck=0 |
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
| [nginx] | |
| name=nginx repo | |
| baseurl=http://nginx.org/packages/centos/6/$basearch/ | |
| gpgcheck=0 | |
| enabled=1 |
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
| # ((ak)) config | |
| export HISTCONTROL=ignoredups:ignorespace | |
| export HISTSIZE=5000 | |
| export HISTFILESIZE=1000 | |
| export HISTIGNORE="ls:cd:[bf]g:exit:..:...:l:l.:ll:la:h:history:edit-profile:reload-profile" | |
| # ((ak)) helpers | |
| alias l='ls -l'; | |
| alias l.='ls -d .*' | |
| alias ll='ls -Al'; |
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
| [include] | |
| files = /etc/supervisord/*.supervisor | |
| [supervisord] | |
| directory = /etc/supervisord | |
| pidfile = /var/run/supervisord.pid | |
| childlogdir = /var/log/supervisord | |
| logfile = /var/log/supervisord/supervisord.log | |
| logfile_maxbytes = 50MB | |
| logfile_backups = 10 |
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
| #!/bin/sh | |
| # /etc/rc.d/init.d/supervisord | |
| # | |
| # Supervisor is a client/server system that | |
| # allows its users to monitor and control a | |
| # number of processes on UNIX-like operating | |
| # systems. | |
| # | |
| # chkconfig: 345 83 04 | |
| # |
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
| # mongo.conf | |
| logpath=/var/log/mongo/mongod.log | |
| logappend=true | |
| fork=true | |
| dbpath=/var/lib/mongo | |
| auth=true | |
| bind_ip=127.0.0.1 | |
| rest=false | |
| nohttpinterface=true |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2013 Asumi Kamikaze Inc. | |
| # Copyright (c) 2013 The Octopus Apps Inc. | |
| # Licensed under the Apache License, Version 2.0 (the "License") | |
| # | |
| # Author: Alejandro M. Bernardis | |
| # Email: alejandro.m.bernardis at gmail.com | |
| # Created: 2/114/13, 12:32 AM |
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
| #!/usr/bin/env python | |
| # Mysshkey | |
| # Version 0.0.3 | |
| # Bill Scheel <LinuxRockz@gmail.com> | |
| # January 1, 2007 | |
| # Released under the GPL License- http://www.fsf.org/licensing/licenses/gpl.txt | |
| # | |
| import sys, string, glob, os, re, exceptions, traceback, pxssh, pexpect, getpass | |
| # System Functions Do Not Touch |
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
| class ValidateMethod(object): | |
| def __init__(self, *args, **kwargs): | |
| self._args = args or [] | |
| self._kwargs = kwargs or {} | |
| def __call__(self, method): | |
| def wrap(context): | |
| assert isinstance(context, ValidateMethod) | |
| def wrapper(self, *args, **kwargs): |
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
| include tox.ini, setup.py | |
| recursive-include tests * | |