13 lines
181 B
Bash
Executable File
13 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = 'remove' ]; then
|
|
for file in chacl getfacl setfacl; do
|
|
if [ -L "$DPKG_ROOT/bin/$file" ]; then
|
|
rm "$DPKG_ROOT/bin/$file"
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|