#
# Written by VA Linux Systems Japan, K.K.
#  public domain
#

# $Id: 10example,v 1.2 2004/10/31 14:22:31 taru Exp $

case "x$MODULECATEGORY" in

  xserver|x)

# Defining Variables
if test "x$cache" = "x"; then
  :
fi

# Parsing configuration file
eval "`ultrapossum_parse_config example`"

# Calculating Logical Variables
if test "x$ULTRAPOSSUM_MODULE_EXAMPLE" = "xinstalled"; then

  # cache possible value
  if test "x$cache" != "x"; then
    :
  fi

  # cache impossible value

fi

  ;;

esac

