pmcf 4.15.4 → 4.15.5

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": "4.15.4",
3
+ "version": "4.15.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -252,7 +252,6 @@ export class BindService extends ExtraSourceService {
252
252
  const configPackageDir = join(dir, "config") + "/";
253
253
  const packageData = {
254
254
  outputs: this.outputs,
255
- dir: configPackageDir,
256
255
  sources: [new FileContentProvider(configPackageDir)],
257
256
  properties: {
258
257
  name: `named-${name}`,
@@ -310,7 +309,6 @@ export class BindService extends ExtraSourceService {
310
309
 
311
310
  const zonesPackageDir = join(dir, "zones") + "/";
312
311
 
313
- packageData.dir = zonesPackageDir;
314
312
  packageData.sources = [
315
313
  new FileContentProvider(zonesPackageDir, ...filePermissions)
316
314
  ];
@@ -325,11 +323,8 @@ export class BindService extends ExtraSourceService {
325
323
 
326
324
  const location = "outfacing";
327
325
 
328
- const outfacingZonesPackageDir = join(dir, location) + "/";
329
-
330
- packageData.dir = outfacingZonesPackageDir;
331
326
  packageData.sources = [
332
- new FileContentProvider(outfacingZonesPackageDir, ...filePermissions)
327
+ new FileContentProvider(join(dir, location) + "/", ...filePermissions)
333
328
  ];
334
329
  packageData.properties = {
335
330
  name: `named-zones-${name}-${location}`,
@@ -63,7 +63,6 @@ export class ChronyService extends ExtraSourceService {
63
63
  const name = host.name;
64
64
 
65
65
  const packageData = {
66
- dir,
67
66
  sources: [new FileContentProvider(dir + "/")],
68
67
  outputs: this.outputs,
69
68
  properties: {
@@ -61,7 +61,6 @@ export class InfluxdbService extends Service {
61
61
  const name = host.name;
62
62
 
63
63
  const packageData = {
64
- dir,
65
64
  sources: [new FileContentProvider(dir + "/")],
66
65
  outputs: this.outputs,
67
66
  properties: {
@@ -159,7 +159,6 @@ export class KeaService extends Service {
159
159
  });
160
160
 
161
161
  const packageData = {
162
- dir,
163
162
  sources: [new FileContentProvider(dir + "/")],
164
163
  outputs: this.outputs,
165
164
  properties: {
@@ -68,8 +68,7 @@ export class MosquittoService extends Service {
68
68
  group
69
69
  };
70
70
  const packageData = {
71
- dir,
72
- sources: [...this.templateContent(entryProperties, directoryProperties)],
71
+ sources: this.templateContent(entryProperties, directoryProperties),
73
72
  outputs: this.outputs,
74
73
  properties: {
75
74
  name: `${this.typeName}-${this.location.name}-${host.name}`,
@@ -98,7 +98,6 @@ export class OpenLDAPService extends Service {
98
98
  };
99
99
 
100
100
  const packageData = {
101
- dir,
102
101
  sources: [
103
102
  ...this.templateContent(entryProperties, directoryProperties),
104
103
  new FileContentProvider(dir + "/", entryProperties, directoryProperties)
@@ -47,7 +47,6 @@ export class PostfixService extends Service {
47
47
  };
48
48
 
49
49
  const packageData = {
50
- dir,
51
50
  sources: [
52
51
  ...this.templateContent(entryProperties, directoryProperties),
53
52
  new FileContentProvider(dir + "/", entryProperties, directoryProperties)
@@ -1257,7 +1257,6 @@ export class ChronyService extends ExtraSourceService {
1257
1257
  };
1258
1258
  };
1259
1259
  preparePackages(dir: any): AsyncGenerator<{
1260
- dir: any;
1261
1260
  sources: FileContentProvider[];
1262
1261
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
1263
1262
  properties: {
@@ -778,7 +778,6 @@ export class InfluxdbService extends Service {
778
778
  };
779
779
  get type(): string;
780
780
  preparePackages(dir: any): AsyncGenerator<{
781
- dir: any;
782
781
  sources: FileContentProvider[];
783
782
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
784
783
  properties: {
@@ -907,7 +907,6 @@ export class KeaService extends Service {
907
907
  };
908
908
  get type(): string;
909
909
  preparePackages(dir: any): AsyncGenerator<{
910
- dir: any;
911
910
  sources: FileContentProvider[];
912
911
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
913
912
  properties: {
@@ -839,7 +839,6 @@ export class MosquittoService extends Service {
839
839
  get type(): string;
840
840
  get listener(): any;
841
841
  preparePackages(dir: any): AsyncGenerator<{
842
- dir: any;
843
842
  sources: any[];
844
843
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
845
844
  properties: {
@@ -871,7 +871,6 @@ export class OpenLDAPService extends Service {
871
871
  get uri(): any;
872
872
  _uri: any;
873
873
  preparePackages(dir: any): AsyncGenerator<{
874
- dir: any;
875
874
  sources: any[];
876
875
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
877
876
  properties: {
@@ -751,7 +751,6 @@ export class PostfixService extends Service {
751
751
  };
752
752
  get type(): string;
753
753
  preparePackages(dir: any): AsyncGenerator<{
754
- dir: any;
755
754
  sources: any[];
756
755
  outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
757
756
  properties: {