pmcf 4.24.0 → 4.24.1
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 +3 -3
package/package.json
CHANGED
package/src/host.mjs
CHANGED
|
@@ -489,13 +489,13 @@ export class Host extends ServiceOwner {
|
|
|
489
489
|
|
|
490
490
|
//console.log([...this.walkDirections(["extends"])].map(e => e.fullName));
|
|
491
491
|
|
|
492
|
-
for (const service of this.services) {
|
|
493
|
-
//console.log("SERVICE",service.name);
|
|
494
|
-
|
|
492
|
+
for (const [name, service] of this.services) {
|
|
495
493
|
if (service.systemdConfigs) {
|
|
496
494
|
for (const { serviceName, configFileName, content } of asArray(
|
|
497
495
|
service.expand(service.systemdConfigs(this.name))
|
|
498
496
|
)) {
|
|
497
|
+
console.log("SERVICE", service.fullName, configFileName);
|
|
498
|
+
|
|
499
499
|
await writeLines(dir, configFileName, content);
|
|
500
500
|
|
|
501
501
|
addHook(
|