blob: 215e013df1d2fe0cf9524918e5c3d785f6904d87 [file] [log] [blame]
--
-- This file and its contents are supplied under the terms of the
-- Common Development and Distribution License ("CDDL"), version 1.0.
-- You may only use this file in accordance with the terms of version
-- 1.0 of the CDDL.
--
-- A full copy of the text of the CDDL should have accompanied this
-- source. A copy of the CDDL is also available via the Internet at
-- http://www.illumos.org/license/CDDL.
--
--
-- Copyright (c) 2016, 2017 by Delphix. All rights reserved.
--
-- This program should be invoked as "zfs program <pool> <prog> <fs> <snap>"
args = ...
argv = args["argv"]
assert(zfs.sync.snapshot(argv[1] .. "@" .. argv[2]) == 0)
snaps = {}
for s in zfs.list.snapshots(argv[1]) do
table.insert(snaps, s)
end
assert(#snaps == 1)
assert(snaps[1] == (argv[1] .. "@" .. argv[2]))