Fixed kerberos path again. Default Ubuntu installs do indeed use /var/lib/krb5kdc. Really should try to autodetect that.
#!/bin/bash
# :mode=shellscript:
set -e
#oldcwd="`pwd`"
#mkdir root
#cd /
#tar c \
# --exclude=\*~ \
# --exclude=usr/local/share/ssoinabox/htdocs/includes/templates/compiled \
# -f - \
# etc/cron.d/ssoinabox \
# usr/local/share/ssoinabox \
# usr/local/share/weblogin/ssoinabox \
# | \
# tar xCf "$oldcwd/root" -
#cd "$oldcwd"
cp -a DEBIAN root/
cd root
version="`cat DEBIAN/control | grep ^Version: | sed -re 's/^Version: //'`"
pkgname="`cat DEBIAN/control | grep ^Package: | sed -re 's/^Package: //'`"
arch="`cat DEBIAN/control | grep ^Architecture: | sed -re 's/^Architecture: //'`"
find . -name \*~ | xargs rm -f
dpkg -b . ../${pkgname}_${version}_${arch}.deb
rm -rf root/DEBIAN