#!/bin/bash
# $Header: /cvs/WebShield/wsrc/files/mgmt/Attic/update_av_now,v 1.2 2001/04/12 10:54:42 bwhittak Exp $
#
# (C) Copyright Network Associates Inc. 2001
#
if [ -f $NETAWSS/.profile.vars ]; then
    . $NETAWSS/.profile.vars
else
    . /var/NAIENV/.profile.vars
fi
[[ "$PATH" == "$wsPATH":* || -z "$wsPATH" ]] || PATH=$wsPATH:$PATH

shopt -s extglob

# Kick off the update in background
kick-av-update "$@" </dev/null >/dev/null 2>&1 &
exit
