The following changes were made:

* Compiled --with-spl=/usr/src/spl-$(VERSION) (location for spl-dev)
  * usher now manages etc/default/zfs
  * recompiled against correct kernel
This commit is contained in:
2017-05-26 14:48:00 -05:00
parent 2d8ff7c827
commit 2794321d9d
3 changed files with 160 additions and 4 deletions

20
SNAP/usher Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
set -e
case $1 in
preinst)
exit 0
;;
postinst)
if [ ! -f ${TARGET}/etc/default/zfs ]; then
cp ${TARGET}/usr/share/zfs/zfs.default /etc/default/zfs
fi
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac