#!/bin/ksh
# IBM_PROLOG_BEGIN_TAG 
# This is an automatically generated prolog. 
#  
# bos720 src/bos/usr/samples/hbaapi/additab.sh 1.2 
#  
# Licensed Materials - Property of IBM 
#  
# COPYRIGHT International Business Machines Corp. 2003,2007 
# All Rights Reserved 
#  
# US Government Users Restricted Rights - Use, duplication or 
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp. 
#  
# IBM_PROLOG_END_TAG 
# @(#)55  1.2  src/bos/usr/samples/hbaapi/additab.sh, hbaapisamp, bos720 4/20/07 00:50:02
# ************************************************************************ 
# *  Program: additab                                                    *
# *  Purpose: Add inittab entry for platform registration program        * 
# ************************************************************************
/usr/sbin/lsitab platformreg > /dev/null
if [[ $? -eq 0 ]]; then
    exit
else
    /usr/sbin/mkitab "platformreg:2:wait:/usr/samples/hbaapi/register_platform >/dev/null 2>&1"
fi

