mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
02fced3067
Adding a new subcommand to zstream called token. This now allows users to decode a resume token to retrieve the toname field. This can be useful for tools that need this information. The syntax works as follows zstream token <resume_token>. Reviewed-by: Matt Ahrens <matt@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Paul Zuchowski <pzuchowski@datto.com> Signed-off-by: Tony Perkins <tperkins@datto.com> Closes #10558
16 lines
329 B
Makefile
16 lines
329 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
sbin_PROGRAMS = zstream
|
|
|
|
zstream_SOURCES = \
|
|
zstream.c \
|
|
zstream.h \
|
|
zstream_dump.c \
|
|
zstream_redup.c \
|
|
zstream_token.c
|
|
|
|
zstream_LDADD = \
|
|
$(abs_top_builddir)/lib/libzfs/libzfs.la \
|
|
$(abs_top_builddir)/lib/libzfs_core/libzfs_core.la \
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|