#!/bin/sh

if [ ! $# -eq 1 ]
then
    echo "Use: pack filename"
	exit 1
fi

rm -f $1
tar zcvf $1 --exclude "conf/hosts.conf" --exclude "html/index.html" --exclude "html/error.html" --exclude "html/*.html.*" --exclude "pack" *
