Lines Matching defs:zfs
25 """This module implements the "zfs holds" subcommand.
26 The only public interface is the zfs.holds.do_holds() function."""
32 import zfs.util
33 import zfs.dataset
34 import zfs.table
36 _ = zfs.util._
39 """Implements the "zfs holds" subcommand."""
44 parser.exit("zfs: error: " + msg)
50 parser = optparse.OptionParser(usage=u, prog="zfs")
64 t = zfs.table.Table(fields, rjustfields)
65 for ds in zfs.dataset.snapshots_fromcmdline(args, options.recursive):
75 raise zfs.util.ZFSError(errno.ENOENT, _("no matching datasets"))