#!/usr/bin/env python
# Copyright (c) 2007 Arastra, Inc.  All rights reserved.
# Arastra, Inc. Confidential and Proprietary.

import Tac, Agent, SuperServer

def main():
   container = Agent.AgentContainer( [ SuperServer.SuperServer ], passiveMount=True )
   container.addOption( "--service", action="append", dest="services",
                        help="Plugins to the SuperServer to run",
                        agentClass=SuperServer.SuperServer )
   container.runAgents()

if __name__ == "__main__":
   main()
