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 +1 -1
- package/src/services/bind.mjs +1 -6
- package/src/services/chrony.mjs +0 -1
- package/src/services/influxdb.mjs +0 -1
- package/src/services/kea.mjs +0 -1
- package/src/services/mosquitto.mjs +1 -2
- package/src/services/openldap.mjs +0 -1
- package/src/services/postfix.mjs +0 -1
- package/types/services/chrony.d.mts +0 -1
- package/types/services/influxdb.d.mts +0 -1
- package/types/services/kea.d.mts +0 -1
- package/types/services/mosquitto.d.mts +0 -1
- package/types/services/openldap.d.mts +0 -1
- package/types/services/postfix.d.mts +0 -1
package/package.json
CHANGED
package/src/services/bind.mjs
CHANGED
|
@@ -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(
|
|
327
|
+
new FileContentProvider(join(dir, location) + "/", ...filePermissions)
|
|
333
328
|
];
|
|
334
329
|
packageData.properties = {
|
|
335
330
|
name: `named-zones-${name}-${location}`,
|
package/src/services/chrony.mjs
CHANGED
package/src/services/kea.mjs
CHANGED
|
@@ -68,8 +68,7 @@ export class MosquittoService extends Service {
|
|
|
68
68
|
group
|
|
69
69
|
};
|
|
70
70
|
const packageData = {
|
|
71
|
-
|
|
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}`,
|
package/src/services/postfix.mjs
CHANGED
|
@@ -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: {
|
package/types/services/kea.d.mts
CHANGED
|
@@ -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: {
|