mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
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
|