#!/bin/ksh
# ------------------------------------------------------------------------- #
#                                                                           #
# IBM Firewall for AIX - Version 3 Release 1.0                              #
#                                                                           #
# 5765-C16 (C) Copyright IBM Corp. 1994, 1997                               #
# All Rights Reserved                                                       #
# Licensed Material - Property of IBM                                       #
#                                                                           #
# US Government Users Restricted Rights -                                   #
# Use, duplication or disclosure restricted by GSA ADP Schedule Contract    #
#     with IBM Corp.                                                        #
#                                                                           #
# ------------------------------------------------------------------------- #
case $1 in 
  en_US | ja_JP | Ja_JP | ko_KR | zh_CN | zh_TW | Zh_TW | fr_FR | it_IT | es_ES | Es_ES| pt_BR )
    locale=$1;;
  *) locale=$LANG;
esac 

unset CLASSPATH
cd /usr/lpp/FW/cfgcli/gui
export JAVA_COMPILER=off; java -mx100000000 FirewallApp  timeout=20 demo=false debug=no enterprise=true encryption=yes locale=$locale > \dev\null 2>&1 &
