Update to 2021-05-27 01:00

master
Daniel Berteaud 3 years ago
parent 800ebd0ff9
commit 42ca9be626
  1. 13
      roles/pbs/files/remove_nag.patch
  2. 5
      roles/pbs/tasks/install.yml

@ -0,0 +1,13 @@
--- /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js.orig 2021-05-27 00:16:17.230337938 +0200
+++ /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js 2021-05-27 00:20:00.203317519 +0200
@@ -468,8 +468,8 @@
},
success: function(response, opts) {
let res = response.result;
- if (res === null || res === undefined || !res || res
- .data.status.toLowerCase() !== 'active') {
+ if (false) { // res === null || res === undefined || !res || res
+ //.data.status.toLowerCase() !== 'active') {
Ext.Msg.show({
title: gettext('No valid subscription'),
icon: Ext.Msg.WARNING,

@ -10,3 +10,8 @@
- name: Install dehydrated hook
template: src=dehydrated_hook.sh.j2 dest=/etc/dehydrated/hooks_deploy_cert.d/pbs.sh mode=755
tags: pbs
- name: Remove registration nag
patch: src=remove_nag.patch dest=/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
ignore_errors: True
tags: pbs

Loading…
Cancel
Save