#!/bin/sh
#
# -----------------------------------------------------------------
# @(#)Selmd	1.2 8/13/93 12:11:39 - Elan Computer Group, Inc. (c) 1993
#
# Copyright (c) 1993 Elan Computer Group, Inc.
# All Rights Reserved.
#
# This is unpublished proprietary source code of Elan Computer Group, Inc.
# The copyright notice above does not evidence any actual
# or intended publication of such source code.
#
USAGE="Usage: $0 {start | stop}"

case "$1" in
    start)
	/usr/lib/elm/jaleo/jaleolicd -s0 -e /usr/lib/elm/jaleo -l /var/adm/elm.log -m 0.125m
	;;
    stop)
	for file in /tmp/.elmd.*
	do
		/bin/kill -15 `cat $file`
	done
	;;
    *) 
	echo "$USAGE"
	exit 1
	;;
esac

