mirror of
https://github.com/eLvErDe/hwraid.git
synced 2025-08-31 06:28:42 +02:00
15 lines
137 B
Bash
15 lines
137 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
|
|
purge)
|
|
# Remove lib dir
|
|
rm -rf /var/lib/adaptec-storage-manager-agent
|
|
;;
|
|
|
|
esac
|
|
|
|
#DEBHELPER#
|