ubuntu-22.04.3-desktop-amd64/casper/filesystem/var/lib/dpkg/info/acl.postinst

13 lines
184 B
Bash
Executable File

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