-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into master
- Loading branch information
Showing
8 changed files
with
97 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,3 +39,4 @@ pve_users: [] | |
pve_acls: [] | ||
pve_storages: [] | ||
pve_ssh_port: 22 | ||
pve_manage_ssh: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,40 @@ | ||
diff -ur /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js | ||
--- /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js 2019-12-17 11:02:52.000000000 +0000 | ||
+++ /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js 2020-01-18 16:29:37.362953621 +0000 | ||
@@ -6016,7 +6016,7 @@ | ||
var update_btn = new Ext.Button({ | ||
--- /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js | ||
+++ /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js | ||
@@ -7446,7 +7446,7 @@ | ||
let update_btn = new Ext.Button({ | ||
text: gettext('Refresh'), | ||
handler: function() { | ||
- Proxmox.Utils.checked_command(function() { apt_command('update'); }); | ||
+ apt_command('update'); | ||
} | ||
}, | ||
}); | ||
|
||
diff -ur /usr/share/pve-manager/js/pvemanagerlib.js /usr/share/pve-manager/js/pvemanagerlib.js | ||
--- /usr/share/pve-manager/js/pvemanagerlib.js 2019-12-16 14:12:19.000000000 +0000 | ||
+++ /usr/share/pve-manager/js/pvemanagerlib.js 2020-01-18 16:26:07.187536513 +0000 | ||
@@ -19024,7 +19024,7 @@ | ||
var version_btn = new Ext.Button({ | ||
text: gettext('Package versions'), | ||
handler: function(){ | ||
- Proxmox.Utils.checked_command(function() { me.showVersions(); }); | ||
+ me.showVersions(); | ||
} | ||
}); | ||
|
||
@@ -19288,7 +19288,7 @@ | ||
{ | ||
text: gettext('System Report'), | ||
handler: function() { | ||
- Proxmox.Utils.checked_command(function (){ me.showReport(); }); | ||
+ me.showReport(); | ||
} | ||
} | ||
], | ||
@@ -40472,7 +40472,6 @@ | ||
--- /usr/share/pve-manager/js/pvemanagerlib.js | ||
+++ /usr/share/pve-manager/js/pvemanagerlib.js | ||
@@ -3151,7 +3151,6 @@ | ||
handler: function(data) { | ||
me.login = null; | ||
me.updateLoginData(data); | ||
- Proxmox.Utils.checked_command(function() {}); // display subscription status | ||
} | ||
}); | ||
} | ||
@@ -28330,7 +28329,7 @@ | ||
{ | ||
text: gettext('System Report'), | ||
handler: function() { | ||
- Proxmox.Utils.checked_command(function() { me.showReport(); }); | ||
+ me.showReport(); | ||
}, | ||
}, | ||
], | ||
@@ -28428,7 +28427,7 @@ | ||
var version_btn = new Ext.Button({ | ||
text: gettext('Package versions'), | ||
handler: function(){ | ||
- Proxmox.Utils.checked_command(function() { me.showVersions(); }); | ||
+ me.showVersions(); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
to unbreak joining via SSH with an explicit link address. | ||
|
||
Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com> | ||
--- | ||
data/PVE/CLI/pvecm.pm | 4 +++- | ||
1 file changed, 3 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/data/PVE/CLI/pvecm.pm b/data/PVE/CLI/pvecm.pm | ||
index b381f4f..fe099d4 100755 | ||
--- /usr/share/perl5/PVE/CLI/pvecm.pm | ||
+++ /usr/share/perl5/PVE/CLI/pvecm.pm | ||
@@ -405,9 +405,11 @@ __PACKAGE__->register_method ({ | ||
push @$cmd, '--nodeid', $param->{nodeid} if $param->{nodeid}; | ||
push @$cmd, '--votes', $param->{votes} if defined($param->{votes}); | ||
|
||
+ my $link_desc = get_standard_option('corosync-link'); | ||
+ | ||
foreach my $link (keys %$links) { | ||
push @$cmd, "--link$link", PVE::JSONSchema::print_property_string( | ||
- $links->{$link}, get_standard_option('corosync-link')); | ||
+ $links->{$link}, $link_desc->{format}); | ||
} | ||
|
||
# this will be used as fallback if no links are specified | ||
-- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters