ZTS: resilver_restart_001.ksh restore defaults
[zfs.git] / contrib / debian / openzfs-zfsutils.postinst
blob7dc208d0dd7b8ea125d025183085c195da0eb19e
1 #!/bin/sh
2 set -e
4 # When processed to here but zfs kernel module is not loaded, the subsequent
5 # services would fail to start. In this case the installation process just
6 # fails at the postinst stage. The user could do
7 # $ sudo modprobe zfs; sudo dpkg --configure -a
8 # to complete the installation.
10 modprobe -v zfs || true # modprobe zfs does nothing if zfs.ko was already loaded.
12 #DEBHELPER#