From 557f2f5387e5df4f8ba14a14dcb8001ddabcf6ce Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Sun, 13 Dec 2020 14:42:38 +0100 Subject: [PATCH] btrbk: add rsh column to list actions with format=long --- btrbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/btrbk b/btrbk index 2eff04e..b45eed4 100755 --- a/btrbk +++ b/btrbk @@ -187,15 +187,15 @@ my @config_target_types = qw(send-receive raw); my %table_formats = ( list_volume => { table => [ qw( -volume_host -volume_port volume_path ) ], - long => [ qw( volume_host volume_port volume_path ) ], + long => [ qw( volume_host volume_port volume_path volume_rsh ) ], raw => [ qw( volume_url volume_host volume_port volume_path volume_rsh ) ], }, list_source => { table => [ qw( -source_host -source_port source_subvolume snapshot_path snapshot_name ) ], - long => [ qw( source_host source_port source_subvolume snapshot_path snapshot_name ) ], + long => [ qw( source_host source_port source_subvolume snapshot_path snapshot_name source_rsh ) ], raw => [ qw( source_url source_host source_port source_path snapshot_path snapshot_name source_rsh ) ], }, list_target => { table => [ qw( -target_host -target_port target_path ) ], - long => [ qw( target_host target_port target_path ) ], + long => [ qw( target_host target_port target_path target_rsh ) ], raw => [ qw( target_url target_host target_port target_path target_rsh ) ], }, list => { table => [ qw( -source_host -source_port source_subvolume snapshot_path snapshot_name -target_host -target_port target_path ) ],