#!/bin/sh # $Id: zfs-force-mount,v 1.1 2017/12/23 06:02:01 friedman Exp $ # "zfs mount" passes "-o zfsutil" to mount.zfs, but it will refuse to mount # volumes which have mountpoint=none or canmount=off. # We can bypass the zfs front end in emergency cases. exec mount.zfs -t zfs -o zfsutil "$@" # eof