mirror of
https://github.com/eLvErDe/hwraid.git
synced 2025-08-16 23:38:08 +02:00
15 lines
142 B
Bash
15 lines
142 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
|
# Dirty hack
|
|
test -e /bin/sort || ln -s /usr/bin/sort /bin/sort
|
|
;;
|
|
|
|
esac
|
|
|
|
#DEBHELPER#
|