@forgezero/agent 0.1.45 → 0.1.46
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/dist/agent-heartbeat.js +1 -1
- package/dist/bootstrap.js +1 -1
- package/dist/fz-agent.js +5 -2
- package/dist/fz.js +1 -1
- package/dist/metal-bootstrap.js +1 -1
- package/dist/operator-bootstrap.js +1 -1
- package/dist/platform-fleet-verification.js +1 -1
- package/dist/provision.js +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/agent-heartbeat.js
CHANGED
package/dist/bootstrap.js
CHANGED
package/dist/fz-agent.js
CHANGED
|
@@ -7000,7 +7000,7 @@ function assertSupportedGuestImage(imageKey) {
|
|
|
7000
7000
|
}
|
|
7001
7001
|
|
|
7002
7002
|
// src/version.ts
|
|
7003
|
-
var VERSION = "0.1.
|
|
7003
|
+
var VERSION = "0.1.46";
|
|
7004
7004
|
|
|
7005
7005
|
// src/ssh-bootstrap.ts
|
|
7006
7006
|
class SshBootstrapError extends Error {
|
|
@@ -10538,7 +10538,10 @@ var systemCommand = (argv2, stdin) => {
|
|
|
10538
10538
|
stdin: stdin === undefined ? undefined : Buffer.from(stdin),
|
|
10539
10539
|
stdout: "pipe",
|
|
10540
10540
|
stderr: "pipe",
|
|
10541
|
-
env: {
|
|
10541
|
+
env: {
|
|
10542
|
+
PATH: "/usr/sbin:/usr/bin:/sbin:/bin",
|
|
10543
|
+
...process.env.NOTIFY_SOCKET ? { NOTIFY_SOCKET: process.env.NOTIFY_SOCKET } : {}
|
|
10544
|
+
}
|
|
10542
10545
|
});
|
|
10543
10546
|
return {
|
|
10544
10547
|
exitCode: result.exitCode,
|
package/dist/fz.js
CHANGED
package/dist/metal-bootstrap.js
CHANGED
|
@@ -292,7 +292,7 @@ function systemdAgentEgressDirectives(loopbackTcpPorts = []) {
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
// src/version.ts
|
|
295
|
-
var VERSION = "0.1.
|
|
295
|
+
var VERSION = "0.1.46";
|
|
296
296
|
|
|
297
297
|
// src/otel-collector.ts
|
|
298
298
|
var FORGEZERO_OTEL_COLLECTOR_UNIT = "forgezero-otel-collector.service";
|
|
@@ -1697,7 +1697,7 @@ function requestSoftware(requirements, socketPath = DEFAULT_SOFTWARE_HELPER_SOCK
|
|
|
1697
1697
|
}
|
|
1698
1698
|
|
|
1699
1699
|
// src/version.ts
|
|
1700
|
-
var VERSION3 = "0.1.
|
|
1700
|
+
var VERSION3 = "0.1.46";
|
|
1701
1701
|
|
|
1702
1702
|
// src/egress-policy.ts
|
|
1703
1703
|
import { realpathSync as realpathSync2 } from "node:fs";
|
package/dist/provision.js
CHANGED
|
@@ -1697,7 +1697,7 @@ function requestSoftware(requirements, socketPath = DEFAULT_SOFTWARE_HELPER_SOCK
|
|
|
1697
1697
|
}
|
|
1698
1698
|
|
|
1699
1699
|
// src/version.ts
|
|
1700
|
-
var VERSION3 = "0.1.
|
|
1700
|
+
var VERSION3 = "0.1.46";
|
|
1701
1701
|
|
|
1702
1702
|
// src/egress-policy.ts
|
|
1703
1703
|
import { realpathSync as realpathSync2 } from "node:fs";
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** One package version shared by both public binaries. Pinned to package.json by tests. */
|
|
2
|
-
export declare const VERSION = "0.1.
|
|
2
|
+
export declare const VERSION = "0.1.46";
|