From c06d94543c84caf20a77c9b3f329753a4ba28b85 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Fri, 16 Apr 2021 22:10:50 +0200 Subject: [PATCH] btrbk: add "backups" output format Preparatory for single-column patchset. --- btrbk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/btrbk b/btrbk index cf1d33c..38adbdc 100755 --- a/btrbk +++ b/btrbk @@ -226,6 +226,13 @@ my %table_formats = ( raw => [ qw( source_url source_host source_port source_path snapshot_subvolume snapshot_name status source_rsh ) ], }, + backups => { # same as resolved + # NOTE: snapshot_path is ambigous and does NOT print SUBVOL_PATH here (should be snapshot_subvolume, left as-is for compatibility) + table => [ qw( -source_host -source_port source_subvolume snapshot_subvolume status -target_host -target_port target_subvolume ) ], + long => [ qw( -source_host -source_port source_subvolume snapshot_subvolume status -target_host -target_port target_subvolume target_type ) ], + raw => [ qw( type source_url source_host source_port source_path snapshot_path snapshot_name status target_url target_host target_port target_path target_type source_rsh target_rsh ) ], + }, + latest => { # same as resolved, except hiding target if not present # NOTE: snapshot_path is ambigous and does NOT print SUBVOL_PATH here (should be snapshot_subvolume, left as-is for compatibility) table => [ qw( -source_host -source_port source_subvolume snapshot_subvolume status -target_host -target_port -target_subvolume ) ], @@ -6856,6 +6863,9 @@ MAIN: elsif($action_resolve eq "snapshots") { print_formatted("snapshots", \@data); } + elsif($action_resolve eq "backups") { + print_formatted("backups", \@data); + } elsif($action_resolve eq "latest") { print_formatted("latest", \@data); }