mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
21 lines
511 B
Plaintext
21 lines
511 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
zedd="/usr/lib/zfs-linux/zed.d"
|
||
|
etcd="/etc/zfs/zed.d"
|
||
|
|
||
|
# enable all default zedlets that are not overridden
|
||
|
while read -r file ; do
|
||
|
etcfile="${etcd}/${file}"
|
||
|
[ -e "${etcfile}" ] && continue
|
||
|
ln -sfT "${zedd}/${file}" "${etcfile}"
|
||
|
done < "${zedd}/DEFAULT-ENABLED"
|
||
|
|
||
|
# 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
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|