re-tidy perl source code with correct perltidy version

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2025-07-10 15:27:18 +02:00
parent 1e9b459717
commit 7ecab87144
2 changed files with 7 additions and 3 deletions

View File

@ -365,8 +365,10 @@ __PACKAGE__->register_method({
code => sub { code => sub {
my ($param) = @_; my ($param) = @_;
return PVE::RRD::create_rrd_graph("pve2-storage/$param->{node}/$param->{storage}", return PVE::RRD::create_rrd_graph(
$param->{timeframe}, $param->{ds}, $param->{cf}); "pve2-storage/$param->{node}/$param->{storage}",
$param->{timeframe}, $param->{ds}, $param->{cf},
);
}, },
}); });

View File

@ -617,7 +617,9 @@ sub create_base {
my $newvolname = $basename ? "$basename/$newname" : "$newname"; my $newvolname = $basename ? "$basename/$newname" : "$newname";
my $cmd = $rbd_cmd->( my $cmd = $rbd_cmd->(
$scfg, $storeid, 'rename', $scfg,
$storeid,
'rename',
get_rbd_path($scfg, $name), get_rbd_path($scfg, $name),
get_rbd_path($scfg, $newname), get_rbd_path($scfg, $newname),
); );