File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ to unbreak joining via SSH with an explicit link address.
2
+
3
+ Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
4
+ ---
5
+ data/PVE/CLI/pvecm.pm | 4 +++-
6
+ 1 file changed, 3 insertions(+), 1 deletion(-)
7
+
8
+ diff --git a/data/PVE/CLI/pvecm.pm b/data/PVE/CLI/pvecm.pm
9
+ index b381f4f..fe099d4 100755
10
+ --- /usr/share/perl5/PVE/CLI/pvecm.pm
11
+ +++ /usr/share/perl5/PVE/CLI/pvecm.pm
12
+ @@ -405,9 +405,11 @@ __PACKAGE__->register_method ({
13
+ push @$cmd, '--nodeid', $param->{nodeid} if $param->{nodeid};
14
+ push @$cmd, '--votes', $param->{votes} if defined($param->{votes});
15
+
16
+ + my $link_desc = get_standard_option('corosync-link');
17
+ +
18
+ foreach my $link (keys %$links) {
19
+ push @$cmd, "--link$link", PVE::JSONSchema::print_property_string(
20
+ - $links->{$link}, get_standard_option('corosync-link'));
21
+ + $links->{$link}, $link_desc->{format});
22
+ }
23
+
24
+ # this will be used as fallback if no links are specified
25
+ - -
26
+
Original file line number Diff line number Diff line change 163
163
164
164
- import_tasks : kernel_module_cleanup.yml
165
165
166
+ - name : " [TEMPFIX] Fix cluster joins on PVE 6"
167
+ patch :
168
+ src : " 01_pass_correct_format_for_linkX.patch"
169
+ basedir : /
170
+ strip : 1
171
+ when : ansible_distribution_release == 'buster'
172
+
166
173
- import_tasks : pve_cluster_config.yml
167
174
when : " pve_cluster_enabled | bool"
168
175
You can’t perform that action at this time.
0 commit comments