neoagent 2.3.1-beta.78 → 2.3.1-beta.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
22bbadf1f2ea672ae483857a022cb8a8
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"42d3d75a56efe1a2e9902f52dc8006099c45d9
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "2070448138" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|
|
@@ -127331,7 +127331,7 @@ r===$&&A.b()
|
|
|
127331
127331
|
o.push(A.id(p,A.iS(!1,new A.a3(B.tF,A.e_(new A.cU(B.h8,new A.a5o(r,p),p),p,p),p),!1,B.I,!0),p,p,0,0,0,p))}r=!1
|
|
127332
127332
|
if(!s.ay)if(!s.ch){r=s.e
|
|
127333
127333
|
r===$&&A.b()
|
|
127334
|
-
r=B.b.A("
|
|
127334
|
+
r=B.b.A("mp2gc5nk-6661ee0").length!==0&&r.b}if(r){r=s.d
|
|
127335
127335
|
r===$&&A.b()
|
|
127336
127336
|
r=r.V&&!r.a0?84:0
|
|
127337
127337
|
q=s.e
|
|
@@ -131991,7 +131991,7 @@ $S:324}
|
|
|
131991
131991
|
A.Y_.prototype={}
|
|
131992
131992
|
A.R_.prototype={
|
|
131993
131993
|
mJ(a){var s=this
|
|
131994
|
-
if(B.b.A("
|
|
131994
|
+
if(B.b.A("mp2gc5nk-6661ee0").length===0||s.a!=null)return
|
|
131995
131995
|
s.zY()
|
|
131996
131996
|
s.a=A.pN(B.Pq,new A.b3i(s))},
|
|
131997
131997
|
zY(){var s=0,r=A.l(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f
|
|
@@ -132009,7 +132009,7 @@ if(!t.f.b(k)){s=1
|
|
|
132009
132009
|
break}i=J.Z(k,"buildId")
|
|
132010
132010
|
h=i==null?null:B.b.A(J.r(i))
|
|
132011
132011
|
j=h==null?"":h
|
|
132012
|
-
if(J.bi(j)===0||J.c(j,"
|
|
132012
|
+
if(J.bi(j)===0||J.c(j,"mp2gc5nk-6661ee0")){s=1
|
|
132013
132013
|
break}n.b=!0
|
|
132014
132014
|
n.J()
|
|
132015
132015
|
p=2
|
|
@@ -132026,7 +132026,7 @@ case 2:return A.i(o.at(-1),r)}})
|
|
|
132026
132026
|
return A.k($async$zY,r)},
|
|
132027
132027
|
v0(){var s=0,r=A.l(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1
|
|
132028
132028
|
var $async$v0=A.h(function(a2,a3){if(a2===1){o.push(a3)
|
|
132029
|
-
s=p}for(;;)switch(s){case 0:if(B.b.A("
|
|
132029
|
+
s=p}for(;;)switch(s){case 0:if(B.b.A("mp2gc5nk-6661ee0").length===0||n.c){s=1
|
|
132030
132030
|
break}n.c=!0
|
|
132031
132031
|
n.J()
|
|
132032
132032
|
p=4
|
|
@@ -42,10 +42,10 @@ function createCloudInitScript({
|
|
|
42
42
|
'modprobe 9pnet_virtio 2>/dev/null || true',
|
|
43
43
|
'',
|
|
44
44
|
'if ! grep -qs "neoagent-host" /etc/fstab; then',
|
|
45
|
-
' echo "neoagent-host ${HOST_SHARE_MOUNT} 9p trans=virtio,version=9p2000.L,msize=
|
|
45
|
+
' echo "neoagent-host ${HOST_SHARE_MOUNT} 9p trans=virtio,version=9p2000.L,msize=262144,ro 0 0" >> /etc/fstab',
|
|
46
46
|
'fi',
|
|
47
47
|
'if ! grep -qs "neoagent-data" /etc/fstab; then',
|
|
48
|
-
' echo "neoagent-data ${HOST_DATA_MOUNT} 9p trans=virtio,version=9p2000.L,msize=
|
|
48
|
+
' echo "neoagent-data ${HOST_DATA_MOUNT} 9p trans=virtio,version=9p2000.L,msize=262144,rw 0 0" >> /etc/fstab',
|
|
49
49
|
'fi',
|
|
50
50
|
'',
|
|
51
51
|
'mount -a >/dev/null 2>&1 || true',
|
|
@@ -293,16 +293,18 @@ function buildQemuArgs({
|
|
|
293
293
|
);
|
|
294
294
|
|
|
295
295
|
if (hostShareRoot) {
|
|
296
|
+
const id = 'fsdev-host';
|
|
296
297
|
args.push(
|
|
297
|
-
'-
|
|
298
|
-
`
|
|
298
|
+
'-fsdev', `local,path=${hostShareRoot},id=${id},security_model=none,readonly=on`,
|
|
299
|
+
'-device', `virtio-9p-pci,fsdev=${id},mount_tag=neoagent-host`,
|
|
299
300
|
);
|
|
300
301
|
}
|
|
301
302
|
|
|
302
303
|
if (hostDataRoot) {
|
|
304
|
+
const id = 'fsdev-data';
|
|
303
305
|
args.push(
|
|
304
|
-
'-
|
|
305
|
-
`
|
|
306
|
+
'-fsdev', `local,path=${hostDataRoot},id=${id},security_model=none`,
|
|
307
|
+
'-device', `virtio-9p-pci,fsdev=${id},mount_tag=neoagent-data`,
|
|
306
308
|
);
|
|
307
309
|
}
|
|
308
310
|
|