@forgezero/agent 0.1.14 → 0.1.15
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/fz-agent.js +2 -2
- package/dist/fz.js +1 -1
- package/dist/metal-helper-socket.js +1 -1
- package/dist/metal-provision.js +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/fz-agent.js
CHANGED
|
@@ -1912,7 +1912,7 @@ package_update: true
|
|
|
1912
1912
|
${users}disable_root: true
|
|
1913
1913
|
# Git is part of the deployment transport, not a tenant-selected prerequisite:
|
|
1914
1914
|
# every dynamically claimed repository must be cloneable on a clean image.
|
|
1915
|
-
packages: [curl, ca-certificates, openssl, openssh-client, git${claim.spec.confidential ? ", python3" : ""}]
|
|
1915
|
+
packages: [curl, ca-certificates, openssl, openssh-client, git, unzip${claim.spec.confidential ? ", python3" : ""}]
|
|
1916
1916
|
write_files:
|
|
1917
1917
|
${enrolmentFiles}${yamlFile("/usr/local/sbin/forgezero-guest-bootstrap", bootstrap, "0700")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.socket", runnerSocketUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.service", runnerUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-agent.service", agentUnit, "0644")}runcmd:
|
|
1918
1918
|
- [ bash, /usr/local/sbin/forgezero-guest-bootstrap ]
|
|
@@ -2713,7 +2713,7 @@ async function applyMetalIsolation(profile, exec = defaultExec) {
|
|
|
2713
2713
|
}
|
|
2714
2714
|
|
|
2715
2715
|
// src/version.ts
|
|
2716
|
-
var VERSION = "0.1.
|
|
2716
|
+
var VERSION = "0.1.15";
|
|
2717
2717
|
|
|
2718
2718
|
// src/index.ts
|
|
2719
2719
|
function loadOrCreateSeed(path) {
|
package/dist/fz.js
CHANGED
|
@@ -908,7 +908,7 @@ package_update: true
|
|
|
908
908
|
${users}disable_root: true
|
|
909
909
|
# Git is part of the deployment transport, not a tenant-selected prerequisite:
|
|
910
910
|
# every dynamically claimed repository must be cloneable on a clean image.
|
|
911
|
-
packages: [curl, ca-certificates, openssl, openssh-client, git${claim.spec.confidential ? ", python3" : ""}]
|
|
911
|
+
packages: [curl, ca-certificates, openssl, openssh-client, git, unzip${claim.spec.confidential ? ", python3" : ""}]
|
|
912
912
|
write_files:
|
|
913
913
|
${enrolmentFiles}${yamlFile("/usr/local/sbin/forgezero-guest-bootstrap", bootstrap, "0700")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.socket", runnerSocketUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.service", runnerUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-agent.service", agentUnit2, "0644")}runcmd:
|
|
914
914
|
- [ bash, /usr/local/sbin/forgezero-guest-bootstrap ]
|
package/dist/metal-provision.js
CHANGED
|
@@ -908,7 +908,7 @@ package_update: true
|
|
|
908
908
|
${users}disable_root: true
|
|
909
909
|
# Git is part of the deployment transport, not a tenant-selected prerequisite:
|
|
910
910
|
# every dynamically claimed repository must be cloneable on a clean image.
|
|
911
|
-
packages: [curl, ca-certificates, openssl, openssh-client, git${claim.spec.confidential ? ", python3" : ""}]
|
|
911
|
+
packages: [curl, ca-certificates, openssl, openssh-client, git, unzip${claim.spec.confidential ? ", python3" : ""}]
|
|
912
912
|
write_files:
|
|
913
913
|
${enrolmentFiles}${yamlFile("/usr/local/sbin/forgezero-guest-bootstrap", bootstrap, "0700")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.socket", runnerSocketUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-deploy-runner.service", runnerUnit, "0644")}${yamlFile("/etc/systemd/system/forgezero-agent.service", agentUnit2, "0644")}runcmd:
|
|
914
914
|
- [ bash, /usr/local/sbin/forgezero-guest-bootstrap ]
|
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.15";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"//": "Publishing happens from an operator's machine, not CI \u2014 CLAUDE.md records that the absence of CI is deliberate. npm's `provenance` attests a tarball was built by a recognised CI provider from a named commit, so it cannot be produced here: it was set, and the first publish failed with `Automatic provenance generation not supported for provider: null`. A setting that can never be satisfied is worse than none, because it reads as a guarantee nobody is getting. Restore it the day this publishes from CI, and not before.",
|
|
3
3
|
"name": "@forgezero/agent",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.15",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"check": "tsc --noEmit",
|