File: acl.postinst

package info (click to toggle)
acl 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,272 kB
  • sloc: ansic: 5,898; sh: 5,116; perl: 279; makefile: 51; sed: 16
file content (12 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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

#DEBHELPER#