#!/bin/sh -norc
# -*- shell-script -*-
# pre install script for the Debian Linux pcmcia-cs package

UTS_RELEASE=2.0.18
    
echo "WARNING:"
echo "This version of pcmcia-cs expects kernel version $UTS_RELEASE"
echo "You are running kernel version" `uname -r`
echo ""
echo -n "Press <Return> to continue ... "
read a

if [ -r /etc/sysconfig/pcmcia-scripts ] ; then
    mv /etc/sysconfig/pcmcia-scripts /etc/pcmcia
fi

if [ -r /etc/sysconfig/pcmcia ] ; then
    mv /etc/sysconfig/pcmcia /etc/pcmcia.conf
fi
