#!/usr/bin/pfsh # # Copyright 2003 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "%Z%%M% %I% %E% SMI" # # wanbootutil is a wrapper that executes programs in /usr/lib/inet/wanboot # which are used to perform WAN boot administration tasks. # case "$1" in keygen | keymgmt | p12split) exec /usr/lib/inet/wanboot/"$@" ;; *) echo "Usage: wanbootutil [keygen | keymgmt | p12split] [options] " exit 1 ;; esac