mirror of
https://github.com/eLvErDe/hwraid.git
synced 2025-08-20 09:18:07 +02:00
17 lines
253 B
Bash
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#
|