pmcf 6.1.6 → 6.1.8
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 +2 -2
- package/src/core-service.mjs +2 -2
- package/src/services/kea.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"aggregated-map": "^1.0.7",
|
|
54
54
|
"content-entry-transform": "^1.6.9",
|
|
55
|
-
"ip-utilties": "^3.
|
|
55
|
+
"ip-utilties": "^3.5.1",
|
|
56
56
|
"npm-pkgbuild": "^20.7.12",
|
|
57
57
|
"pacc": "^10.4.0",
|
|
58
58
|
"package-directory": "^8.2.0"
|
package/src/core-service.mjs
CHANGED
|
@@ -257,8 +257,8 @@ export class CoreService extends Base {
|
|
|
257
257
|
|
|
258
258
|
get packageData() {
|
|
259
259
|
const packageData = super.packageData;
|
|
260
|
-
const name = `${this.owner.name}-${this.
|
|
261
|
-
packageData.properties.name = `${this.
|
|
260
|
+
const name = `${this.owner.owner.name}-${this.owner.name}`;
|
|
261
|
+
packageData.properties.name = `${this.name}-${name}`;
|
|
262
262
|
packageData.properties.description = `${this.type} service definitions for ${this.fullName}`;
|
|
263
263
|
packageData.properties.groups.push("service-config", name);
|
|
264
264
|
return packageData;
|
package/src/services/kea.mjs
CHANGED
|
@@ -309,7 +309,7 @@ export class kea extends CoreService {
|
|
|
309
309
|
|
|
310
310
|
const subnetPrefixes = new Set(
|
|
311
311
|
[...this.subnets.values()]
|
|
312
|
-
.filter(s => s
|
|
312
|
+
.filter(s => s !== SUBNET_LOCALHOST_IPV4 && s !== SUBNET_LOCALHOST_IPV6)
|
|
313
313
|
.map(s => s.prefix)
|
|
314
314
|
);
|
|
315
315
|
|