#!/usr/bin/env python
# Copyright (c) 2009 Arastra, Inc.  All rights reserved.
# Arastra, Inc. Confidential and Proprietary.
import os, Agent, MlagTunnel, resource
if os.getuid() != 0:
   exit( "Must be root to run MlagTunnel" )
resource.setrlimit( resource.RLIMIT_NOFILE, ( 4096, 4096 ) )
container = Agent.AgentContainer( [ MlagTunnel.MlagTunnel ], 
                                  passiveMount=True )
container.runAgents()
