@forgezero/agent 0.1.17 → 0.1.18

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 CHANGED
@@ -1516,7 +1516,7 @@ ExecStartPre=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
1516
1516
  ExecStart=${bin} deploy-runner --root=${root} --home=${root}/runner-home
1517
1517
  ExecStartPost=+/usr/bin/chown ${agentUser}:${agentUser} ${DEPLOYMENT_RUNNER_SOCKET}
1518
1518
  ExecStartPost=+/usr/bin/chmod 0600 ${DEPLOYMENT_RUNNER_SOCKET}
1519
- ExecStartPost=+/usr/bin/chown root:root /run/forgezero-deploy
1519
+ ExecStartPost=+/usr/bin/chown root:${VAULT_GROUP} /run/forgezero-deploy
1520
1520
  ExecStopPost=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
1521
1521
  Restart=always
1522
1522
  RestartSec=2
@@ -2711,7 +2711,7 @@ async function applyMetalIsolation(profile, exec = defaultExec) {
2711
2711
  }
2712
2712
 
2713
2713
  // src/version.ts
2714
- var VERSION = "0.1.17";
2714
+ var VERSION = "0.1.18";
2715
2715
 
2716
2716
  // src/index.ts
2717
2717
  function loadOrCreateSeed(path) {
package/dist/fz.js CHANGED
@@ -217,7 +217,7 @@ ExecStartPre=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
217
217
  ExecStart=${bin} deploy-runner --root=${root} --home=${root}/runner-home
218
218
  ExecStartPost=+/usr/bin/chown ${agentUser}:${agentUser} ${DEPLOYMENT_RUNNER_SOCKET}
219
219
  ExecStartPost=+/usr/bin/chmod 0600 ${DEPLOYMENT_RUNNER_SOCKET}
220
- ExecStartPost=+/usr/bin/chown root:root /run/forgezero-deploy
220
+ ExecStartPost=+/usr/bin/chown root:${VAULT_GROUP} /run/forgezero-deploy
221
221
  ExecStopPost=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
222
222
  Restart=always
223
223
  RestartSec=2
@@ -774,7 +774,7 @@ async function resolveIdentity(selector, socketPath) {
774
774
  }
775
775
 
776
776
  // src/version.ts
777
- var VERSION = "0.1.17";
777
+ var VERSION = "0.1.18";
778
778
 
779
779
  // src/cli/index.ts
780
780
  var DEFAULT_MODE = THRESHOLD_MODES[0].id;
@@ -250,7 +250,7 @@ ExecStartPre=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
250
250
  ExecStart=${bin} deploy-runner --root=${root} --home=${root}/runner-home
251
251
  ExecStartPost=+/usr/bin/chown ${agentUser}:${agentUser} ${DEPLOYMENT_RUNNER_SOCKET}
252
252
  ExecStartPost=+/usr/bin/chmod 0600 ${DEPLOYMENT_RUNNER_SOCKET}
253
- ExecStartPost=+/usr/bin/chown root:root /run/forgezero-deploy
253
+ ExecStartPost=+/usr/bin/chown root:${VAULT_GROUP} /run/forgezero-deploy
254
254
  ExecStopPost=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
255
255
  Restart=always
256
256
  RestartSec=2
@@ -250,7 +250,7 @@ ExecStartPre=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
250
250
  ExecStart=${bin} deploy-runner --root=${root} --home=${root}/runner-home
251
251
  ExecStartPost=+/usr/bin/chown ${agentUser}:${agentUser} ${DEPLOYMENT_RUNNER_SOCKET}
252
252
  ExecStartPost=+/usr/bin/chmod 0600 ${DEPLOYMENT_RUNNER_SOCKET}
253
- ExecStartPost=+/usr/bin/chown root:root /run/forgezero-deploy
253
+ ExecStartPost=+/usr/bin/chown root:${VAULT_GROUP} /run/forgezero-deploy
254
254
  ExecStopPost=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
255
255
  Restart=always
256
256
  RestartSec=2
package/dist/provision.js CHANGED
@@ -110,7 +110,7 @@ ExecStartPre=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
110
110
  ExecStart=${bin} deploy-runner --root=${root} --home=${root}/runner-home
111
111
  ExecStartPost=+/usr/bin/chown ${agentUser}:${agentUser} ${DEPLOYMENT_RUNNER_SOCKET}
112
112
  ExecStartPost=+/usr/bin/chmod 0600 ${DEPLOYMENT_RUNNER_SOCKET}
113
- ExecStartPost=+/usr/bin/chown root:root /run/forgezero-deploy
113
+ ExecStartPost=+/usr/bin/chown root:${VAULT_GROUP} /run/forgezero-deploy
114
114
  ExecStopPost=+/usr/bin/rm -f ${DEPLOYMENT_RUNNER_SOCKET}
115
115
  Restart=always
116
116
  RestartSec=2
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.17";
2
+ export declare const VERSION = "0.1.18";
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.17",
4
+ "version": "0.1.18",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "check": "tsc --noEmit",