9 lines
98 B
Plaintext
9 lines
98 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
if [ "$1" = "remove" ]; then
|
||
|
rm -f /etc/zfs/zpool.cache
|
||
|
fi
|