#!/bin/sh set -e if [ "$1" = 'configure' ]; then for file in chacl getfacl setfacl; do if [ ! -e "$DPKG_ROOT/bin/$file" ]; then ln -s "/usr/bin/$file" "$DPKG_ROOT/bin/$file" fi done fi