pmcf 3.7.10 → 3.7.11
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 +1 -1
- package/src/host.mjs +4 -0
package/package.json
CHANGED
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,
|