#!/bin/sh
#       BSDI $Id: post_install,v 1.1.1.1 1999/09/23 02:10:39 polk Exp $

# Move the /var/ipx.bsdi directory into place if they don't have one yet

# INSTROOT is normally set by installsw.
if [ "$INSTROOT" = "/" ] ; then
        INSTROOT=
fi

if [ ! -e $INSTROOT/var/ipx ]; then
	mv "$INSTROOT/var/ipx.bsdi" "$INSTROOT/var/ipx"
fi

exit 0;
