mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
zedd="/usr/lib/zfs-linux/zed.d"
|
||
|
etcd="/etc/zfs/zed.d"
|
||
|
|
||
|
if [ "$1" = "purge" ] && [ -d "$etcd" ] ; then
|
||
|
# remove the overrides created in prerm
|
||
|
find "${etcd}" -maxdepth 1 -lname '/dev/null' -delete
|
||
|
# remove any dangling symlinks to old zedlets
|
||
|
find "${etcd}" -maxdepth 1 -lname "${zedd}/*" -xtype l -delete
|
||
|
# clean up any empty directories
|
||
|
( rmdir "$etcd" && rmdir "/etc/zfs" ) || true
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|