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

13 lines
165 B
Bash
Executable File

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