#!/bin/sh
#
# Copyright 2003-2004 Roland Mainz <roland.mainz@nrubsig.org>
# All Rights Reserved.
# Use is subject to license terms.
#
#ident	"$Id: postinstall,v 1.2 2004/02/13 04:43:47 gisburn Exp $"
#
# postinstall for GISWxprint package

print_package_usage()
{
cat <<'@EOF'
# To finish the installation please
#   a) reboot
#     or
#   b) start the Xprint servers manually using
#      % /etc/init.d/xprint start
#      % sleep 30
#      and restart your user CDE sessions (e.g. re-login.)
#
# Verification:
#   After login the env variable ${XPSERVERLIST} should be set and
#   % /opt/GISWxprint/bin/xplsprinters
#   should list all available printer queues.
@EOF
}

# Print postinstall notice about the steps todo after installation
print_package_usage

exit 0
# EOF.
