hwraid/packaging/debian/adaptec-storage-manager-linux-32bit/adaptec-storage-manager-agent.postinst
2013-08-14 22:58:14 +02:00

17 lines
253 B
Bash

#!/bin/sh
set -e
case "$1" in
configure)
chown root:adm /var/log/adaptec-storage-manager-agent
chmod 750 /var/log/adaptec-storage-manager-agent
# Dirty hack
test -e /bin/sort || ln -s /usr/bin/sort /bin/sort
;;
esac
#DEBHELPER#