pmcf 2.71.6 → 2.71.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.71.6",
3
+ "version": "2.71.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -152,6 +152,7 @@ export class BindService extends ExtraSourceService {
152
152
  constructor(owner, data) {
153
153
  super(owner, data);
154
154
 
155
+ this._systemd = "bind.service";
155
156
  this._extends.push(new Service(owner, { name: this.name, type: "dns" }));
156
157
  this.views = {};
157
158
 
@@ -34,7 +34,7 @@ const ChronyServiceTypeDefinition = {
34
34
  },
35
35
  {
36
36
  family: "unix",
37
- path: "/run/chrony/chronyd.sock"
37
+ path: "/var/run/chrony/chronyd.sock"
38
38
  }
39
39
  ]
40
40
  }
@@ -54,6 +54,8 @@ export class ChronyService extends ExtraSourceService {
54
54
  constructor(owner, data) {
55
55
  super(owner, data);
56
56
  this.read(data, ChronyServiceTypeDefinition);
57
+
58
+ this._systemd = "chronyd.service";
57
59
  }
58
60
 
59
61
  get type() {
@@ -57,6 +57,8 @@ export class OpenLDAPService extends Service {
57
57
  constructor(owner, data) {
58
58
  super(owner, data);
59
59
  this.read(data, OpenLDAPServiceTypeDefinition);
60
+
61
+ this._systemd = "slapd.service";
60
62
  }
61
63
 
62
64
  get type() {
@@ -400,6 +400,7 @@ export class BindService extends ExtraSourceService {
400
400
  retry: number;
401
401
  expire: number;
402
402
  minimum: number;
403
+ _systemd: string;
403
404
  views: {};
404
405
  get soaUpdates(): number[];
405
406
  set addresses(value: any[]);
@@ -285,6 +285,7 @@ export class ChronyService extends ExtraSourceService {
285
285
  };
286
286
  };
287
287
  };
288
+ _systemd: string;
288
289
  preparePackages(dir: any): AsyncGenerator<{
289
290
  dir: any;
290
291
  sources: FileContentProvider[];
@@ -282,6 +282,7 @@ export class OpenLDAPService extends Service {
282
282
  };
283
283
  _baseDN: any;
284
284
  _rootDN: any;
285
+ _systemd: string;
285
286
  get type(): string;
286
287
  set baseDN(value: any);
287
288
  get baseDN(): any;