pmcf 3.7.10 → 3.7.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/host.mjs +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.7.10",
3
+ "version": "3.7.12",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -484,6 +484,10 @@ export class Host extends ServiceOwner {
484
484
  { base: this.directory, pattern: "*_key" },
485
485
  { destination: "/etc/ssh/", mode: 0o600 }
486
486
  ),
487
+ new FileContentProvider(
488
+ { base: this.directory, pattern: "credential.secret" },
489
+ { destination: "/var/lib/systemd/", mode: 0o400 }
490
+ ),
487
491
  new FileContentProvider(dir + "/")
488
492
  ],
489
493
  outputs: this.outputs,