echo "Hello this is OSS"  > /tmp/OSS
#****************************
# Start/Stop Startup Programs
#****************************
 
/sbin/chkconfig --level 345 portmap on
/sbin/chkconfig --list afs | grep on
if [ $? -eq 0 ] ; then
        echo "AFS is installed"
        /sbin/chkconfig --level 345 autofs on
        echo "Turned on autofs"
        /sbin/chkconfig --level 345 xntpd off
        echo "Turned off xntpd because afs is running"
        echo "Syncing clock to neighbooring network"
        /etc/rc.d/init.d/xntpd start
        mv /usr/local /usr/local.0
        ln -s /fnal/local/Linux+61 /usr/local
        echo "Linked /usr/local to the cluster"
fi