#!/bin/sh
#
# ident "@(#)smcwebstart	1.2 04/08/11 SMI"
#
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
#

# Start the Sun Java Web Console server via nohup.
# First argument is the temporary script built by smcwebserver which
# launches the Java web container as a background daemon process.

if [ "$1" = "" ]; then
    echo "!!! Error starting web console server !!!"
    exit 1
fi

nohup $1 >/dev/null 2>&1

exit 0
