mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-04-06 21:00:35 -04:00
cira connected instead of cira detected
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
126c8856cb
commit
2337013acf
@ -2706,10 +2706,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"certs"
|
||||
]
|
||||
}
|
||||
},
|
||||
"amtAcmActivation": {
|
||||
"type": "object",
|
||||
|
@ -41224,10 +41224,7 @@
|
||||
"tr": "Intel AMT CIRA bağlandı",
|
||||
"uk": "Intel AMT CIRA підключено",
|
||||
"zh-chs": "英特尔 AMT CIRA 已连接",
|
||||
"zh-cht": "英特爾 AMT CIRA 已連接"
|
||||
},
|
||||
{
|
||||
"en": "Intel AMT CIRA detected",
|
||||
"zh-cht": "英特爾 AMT CIRA 已連接",
|
||||
"xloc": [
|
||||
"default.handlebars->47->273",
|
||||
"default3.handlebars->35->270"
|
||||
@ -41257,10 +41254,7 @@
|
||||
"tr": "Intel AMT CIRA'nın bağlantısı kesildi",
|
||||
"uk": "Intel AMT CIRA припинено",
|
||||
"zh-chs": "英特尔 AMT CIRA 断开连接",
|
||||
"zh-cht": "英特爾 AMT CIRA 斷開連接"
|
||||
},
|
||||
{
|
||||
"en": "Intel AMT CIRA not detected",
|
||||
"zh-cht": "英特爾 AMT CIRA 斷開連接",
|
||||
"xloc": [
|
||||
"default.handlebars->47->277",
|
||||
"default3.handlebars->35->274"
|
||||
|
@ -3692,14 +3692,14 @@
|
||||
if ((node.agent != null) && (node.agent.root === false)) { agentPrivilages = "Agent connected with limited privilages"; }
|
||||
var abc = { title: node.name, icon: node.icon, nodeid: node._id, id: message.event.id };
|
||||
if (((node.conn & 1) == 0) && ((message.event.conn & 1) != 0)) { abc.text = agentPrivilages; addNotification(abc); }
|
||||
if (((node.conn & 2) == 0) && ((message.event.conn & 2) != 0)) { abc.text = "Intel AMT CIRA detected"; addNotification(abc); }
|
||||
if (((node.conn & 2) == 0) && ((message.event.conn & 2) != 0)) { abc.text = "Intel AMT CIRA connected"; addNotification(abc); }
|
||||
if (((node.conn & 4) == 0) && ((message.event.conn & 4) != 0)) { abc.text = "Intel AMT connected"; addNotification(abc); }
|
||||
if (((node.conn & 16) == 0) && ((message.event.conn & 16) != 0)) { abc.text = "MQTT connected"; addNotification(abc); }
|
||||
}
|
||||
if (n & 4) {
|
||||
var abc = { title: node.name, icon: node.icon, nodeid: node._id, id: message.event.id };
|
||||
if (((node.conn & 1) != 0) && ((message.event.conn & 1) == 0)) { abc.text = "Agent disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 2) != 0) && ((message.event.conn & 2) == 0)) { abc.text = "Intel AMT CIRA not detected"; addNotification(abc); }
|
||||
if (((node.conn & 2) != 0) && ((message.event.conn & 2) == 0)) { abc.text = "Intel AMT CIRA disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 4) != 0) && ((message.event.conn & 4) == 0)) { abc.text = "Intel AMT disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 16) != 0) && ((message.event.conn & 16) == 0)) { abc.text = "MQTT disconnected"; addNotification(abc); }
|
||||
}
|
||||
|
@ -4154,14 +4154,14 @@
|
||||
if ((node.agent != null) && (node.agent.root === false)) { agentPrivilages = "Agent connected with limited privilages"; }
|
||||
var abc = { title: node.name, icon: node.icon, nodeid: node._id, id: message.event.id };
|
||||
if (((node.conn & 1) == 0) && ((message.event.conn & 1) != 0)) { abc.text = agentPrivilages; addNotification(abc); }
|
||||
if (((node.conn & 2) == 0) && ((message.event.conn & 2) != 0)) { abc.text = "Intel AMT CIRA detected"; addNotification(abc); }
|
||||
if (((node.conn & 2) == 0) && ((message.event.conn & 2) != 0)) { abc.text = "Intel AMT CIRA connected"; addNotification(abc); }
|
||||
if (((node.conn & 4) == 0) && ((message.event.conn & 4) != 0)) { abc.text = "Intel AMT connected"; addNotification(abc); }
|
||||
if (((node.conn & 16) == 0) && ((message.event.conn & 16) != 0)) { abc.text = "MQTT connected"; addNotification(abc); }
|
||||
}
|
||||
if (n & 4) {
|
||||
var abc = { title: node.name, icon: node.icon, nodeid: node._id, id: message.event.id };
|
||||
if (((node.conn & 1) != 0) && ((message.event.conn & 1) == 0)) { abc.text = "Agent disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 2) != 0) && ((message.event.conn & 2) == 0)) { abc.text = "Intel AMT CIRA not detected"; addNotification(abc); }
|
||||
if (((node.conn & 2) != 0) && ((message.event.conn & 2) == 0)) { abc.text = "Intel AMT CIRA disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 4) != 0) && ((message.event.conn & 4) == 0)) { abc.text = "Intel AMT disconnected"; addNotification(abc); }
|
||||
if (((node.conn & 16) != 0) && ((message.event.conn & 16) == 0)) { abc.text = "MQTT disconnected"; addNotification(abc); }
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user