#!/bin/sh
# postinst script for animals
#
# See: dh_installdeb(1).

set -e

case "$1" in
    configure)
	chown games:games /var/games/animals
	chmod 06775 /var/games/animals
	chown games:games /usr/games/animals
	chmod 02755 /usr/games/animals
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument '$1'" >&2
        exit 1
    ;;
esac


#DEBHELPER#

exit 0
