#!/bin/bash

set -e
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

case "$1" in
    configure)
        if ischroot; then
            echo "chroot detected; skipping postinst"
            exit 0
        fi
    ;;
esac

exit 0
