#! /bin/sh

#
# Contributed by Pieter Hoekstra for Koops Furness Services
# p.hoekstra@koops-furness.nl, 11-2004
#

. /etc/thinstation.global


PACKAGE=pcmcia

case "$1" in  
init)
    if ! pkg_initialized $PACKAGE; then
	/bin/cardmgr

	pkg_set_init_flag $PACKAGE
    fi
    ;;
console)
;;
window)
;;
fullscreen)
;;
help)
    echo "Usage: $0 init"
    ;;
  *)
    exit 1
    ;;
esac

exit 0
