#!/bin/sh
if [ "`uname`" = "Linux" ]; then enable -n echo; fi

PATH=$INTROOT/bin:$ACSROOT/bin:$PATH

if [ -f /etc/redhat-release ] ; then
	archive.redhat $1
elif [ -f /etc/debian_version ] ; then
	archive.debian $1
else
    echo "Unknown distribution. Maybe try calling one of:"
    echo "	archive.redhat"
    echo "	archive.debian"
fi
