/****************************************************************************/
/*                                                                          */
/*  FILE: cmd_park.c                                                        */
/*                                                                          */
/*  PURPOSE:                                                                */
/*      Execute a client command to "park" the system.                      */
/*                                                                          */
/*      At this point I don't exactly know what needs to be done.  I expect */
/*      We should point the telescope at the horizon, close the roof and    */
/*      turn off any un needed power suplies.  It is likely site specific   */
/*                                                                          */
/*  HISTORY:                                                                */   
/*      June 1998 -- Chris Albertson Started work                           */
/*                                                                          */
/****************************************************************************/
/*                                                                          */
/*                  Copyright (C) 1998 Chris Albertson.                     */
/*                                                                          */
/*   This program is free software; you can redistribute it and/or          */
/*   modify it under the terms of the GNU General Public License as         */ 
/*   published by the Free Software Foundation; either version 2, or        */ 
/*   (at your option) any later version.                                    */
/****************************************************************************/


/* Used by RCS and ident */
char cmd_park_rcsid[] = 
    "$Id: cmd_park.c,v 1.1 1998/08/04 05:08:47 chris Exp $";


#include <stdio.h>
#include <string.h>
#include <errno.h>

#include "MLog.h"
#include "server_lib.h"
#include "commands.h"
#include "tasks.h"
#include "time_funct.h"



/****************************************************************************/
/*                                                                          */
/*  cmd_park                                                                */
/*                                                                          */
/*  PURPOSE:                                                                */
/*      Execute the "park" command.                                         */
/*                                                                          */
/*  ARGUMENTS:                                                              */
/*      None.                                                               */
/*                                                                          */
/****************************************************************************/
int cmd_park(int sd, char args[])
{  
    ml_printf(ML_DEBUG, ML_INFORMATION,
        "cmd_park called\n");  
            
    /************************************************************************/
    /************************************************************************/
    /************************************************************************/
    /*                                                                      */
    /*                  THIS IS WHERE ALL THE CODE GOES                     */
    /*                                                                      */
    /************************************************************************/
    /************************************************************************/
    /************************************************************************/
        
    return CMD_OK;
}
