pmcf 2.73.8 → 2.73.10
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/bin/pmcf-package +1 -1
- package/package.json +4 -4
- package/src/services/kea.mjs +3 -4
package/bin/pmcf-package
CHANGED
|
@@ -4,7 +4,7 @@ import { join, resolve } from "node:path";
|
|
|
4
4
|
import { readFile, mkdtemp } from "node:fs/promises";
|
|
5
5
|
import { tmpdir } from "node:os";
|
|
6
6
|
import { cwd, env } from "node:process";
|
|
7
|
-
import { packageDirectory } from "
|
|
7
|
+
import { packageDirectory } from "package-directory";
|
|
8
8
|
import { createPublishingDetails } from "npm-pkgbuild";
|
|
9
9
|
import { prepare } from "../src/cli.mjs";
|
|
10
10
|
import { asArray } from "../src/utils.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "2.73.
|
|
3
|
+
"version": "2.73.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"ip-utilties": "^1.4.7",
|
|
54
54
|
"npm-pkgbuild": "^18.2.12",
|
|
55
|
-
"pacc": "^3.
|
|
56
|
-
"
|
|
55
|
+
"pacc": "^3.11.1",
|
|
56
|
+
"package-directory": "^8.1.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@types/node": "^24.0
|
|
59
|
+
"@types/node": "^24.1.0",
|
|
60
60
|
"ava": "^6.4.1",
|
|
61
61
|
"c8": "^10.1.3",
|
|
62
62
|
"documentation": "^14.0.3",
|
package/src/services/kea.mjs
CHANGED
|
@@ -94,7 +94,7 @@ const KeaServiceTypeDefinition = {
|
|
|
94
94
|
}
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
-
const keaVersion =
|
|
97
|
+
const keaVersion = 3.0;
|
|
98
98
|
export const fetureHasHTTPEndpoints = keaVersion > 2.7;
|
|
99
99
|
|
|
100
100
|
export class KeaService extends Service {
|
|
@@ -265,7 +265,7 @@ export class KeaService extends Service {
|
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
-
const ctrlAgent = {
|
|
268
|
+
/*const ctrlAgent = {
|
|
269
269
|
"Control-agent": {
|
|
270
270
|
"http-host": ctrlAgentEndpoint.hostname,
|
|
271
271
|
"http-port": ctrlAgentEndpoint.port,
|
|
@@ -276,7 +276,7 @@ export class KeaService extends Service {
|
|
|
276
276
|
},
|
|
277
277
|
loggers
|
|
278
278
|
}
|
|
279
|
-
}
|
|
279
|
+
};*/
|
|
280
280
|
|
|
281
281
|
const dnsServersSlot = names =>
|
|
282
282
|
names.map(name => {
|
|
@@ -418,7 +418,6 @@ export class KeaService extends Service {
|
|
|
418
418
|
};
|
|
419
419
|
|
|
420
420
|
for (const [name, data] of Object.entries({
|
|
421
|
-
"kea-ctrl-agent": ctrlAgent,
|
|
422
421
|
"kea-dhcp-ddns": ddns,
|
|
423
422
|
"kea-dhcp4": dhcp4,
|
|
424
423
|
"kea-dhcp6": dhcp6
|