Files
server/var/lib/dpkg/info/acl.postinst
2026-01-07 20:52:11 +01:00

13 lines
206 B
Bash
Executable File

#!/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