#!/bin/sh

# Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident  "@(#)postpatch 1.1     03/06/09 SMI"

sed '/multicastclient/d' /etc/inet/ntp.conf > /tmp/ntp.conf
cp /tmp/ntp.conf /etc/inet/ntp.conf

/etc/init.d/xntpd stop
/etc/init.d/xntpd start 

/usr/sbin/newaliases
echo "postpatch completed successfully!"
