How to in recursive manner rollback to an zfs-autobackup backup?

ZFS Autobauckup setup in my system, I would like to reset all of the covered ZFS filesystem to be rollback to some point where ZFS Autobackup did take an snapshot.
Is it possible to know how to do such thing?
 
If it helps, from zfs-rollback(8):

"… The -rR options do not recursively destroy the child snapshots of a recursive snapshot. Only direct snapshots of the specified filesystem are destroyed by either of these options. To completely roll back a recursive snapshot, you must roll back the individual child snapshots. …"
 
If it helps, from zfs-rollback(8):

"… The -rR options do not recursively destroy the child snapshots of a recursive snapshot. Only direct snapshots of the specified filesystem are destroyed by either of these options. To completely roll back a recursive snapshot, you must roll back the individual child snapshots. …"
I expected zfs-autobackup to have a script to do so.
 
zfs-autobackup

Code:
% pkg provides zfs-autobackup
Name    : py311-zfs-autobackup-3.2.2
Comment : Periodicly backup zfs filesystems to other locations
Repo    : FreeBSD-ports
Filename: usr/local/bin/zfs-autobackup
% pkg rquery %o py311-zfs-autobackup
sysutils/py-zfs-autobackup
%

1727746663377.png


Code:
% cd /tmp
% wcurl https://pkg.freebsd.org/FreeBSD:15:amd64/latest/All/py311-zfs-autobackup-3.2.2.pkg
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  101k  100  101k    0     0   495k      0 --:--:-- --:--:-- --:--:--  497k
% strings py311-zfs-autobackup-3.2.2.pkg | less
%

At a glance, nothing useful in the strings.

In GitHub:

1727747265913.png
 
Back
Top