13 lines
206 B
Bash
Executable File
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
|
|
|
|
|