#!/usr/bin/python

"Install athena on a freshly installed RedHat system."

def main():

    """Import and run  the submodules.  They have to  be run in order,
    as they depend on what the previous modules have set up."""

    # Make sure the cwd is in the path
    import sys, os
    sys.path.append(os.getcwd())
    
    import athenafy; athenafy.main()
    import postinstall; postinstall.main()

if __name__ == '__main__': main()
    
