#!/bin/sh
if [ -f /etc/SuSE-release ] ; then
	echo ipfilter-suse
fi
if [ -f /etc/redhat-release ] ; then
	echo ipfilter-redhat
fi
exit 0
