#!/bin/sh
#############################################################################
# Copyright (C)2004-2005, Sun Microsystems Inc. All rights reserved.
# Use is subject to license terms.
#
# Name: list_services
# Description: Common function to list various components

# pragma ident	"$Id: list_services.sh"
##############################################################################

# control logging method
#
#log=echo
log="logger -pdaemon.err"

service_names=`ls /usr/lib/cc-cfw`
for service in $service_names
do
    if [ "${service}" != "framework" ] ; then
        echo $service
    fi
done


