/*
 * Copyright (c) 2000-2002 QoSient, LLC
 * All rights reserved.
 *
 * 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.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 *
 */

The script is intended to manage the start/stopping of the Argus daemon both
during system  boot as well as in normal operation.  The script takes one
of four arguments, start, stop, restart and status.  If /etc/argus.conf is
not found, it runs Argus with some assumptions about the system configuration
and logs to /var/argus/argus.file.

For installation on Linux:

   Edit the PATH variable in the script to the directory argus is located in.

   Then, install the script in /etc/rc.d/init.d.  After this if your system
supports the chkconfig() utility, you can use that to install argus and
the have it start argus when the system boots.


      # cp argus /etc/rc.d/init.d
      # chkconfig --add argus
      # chkconfig --level 2345 argus on


   If your system doesn't have chkconfig(), then simply create a link to the
/etc/rc.d/init.d/argus file in the run level that you want argus to run
in.  Most systems will have this as run level 3.
 
      # cd /etc/rc.d/rc3.d
      # ln -s ../init.d/argus argus


