#!/bin/bash
# Copyright (c) 2000-2004 Networks Associates Technology Inc.
# All rights reserved.
# General WebShield command launcher - provides a single fixed path,
# which may be hard coded, through which all WebShield component
# commands may be run.
# $Header: /cvs/WebShield/wsrc/files/platform/Linux/usr/sbin/webshield,v 1.3 2004/02/02 14:19:18 bwhittak Exp $

if [ -f $NETAWSS/.profile.vars ]; then 
 . $NETAWSS/.profile.vars 
else 
 . /var/NAIENV/.profile.vars 
fi 

PATH=$wsPATH:$PATH

exec "$@"
