pmcf 6.16.1 → 6.16.2
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-diagram +1 -1
- package/package.json +1 -1
- package/src/services/kea.mjs +1 -1
package/bin/pmcf-diagram
CHANGED
|
@@ -32,7 +32,7 @@ for await (const network of location.networks) {
|
|
|
32
32
|
.join(" ")}" shape=circle];`
|
|
33
33
|
);
|
|
34
34
|
|
|
35
|
-
for
|
|
35
|
+
for (const na of network.networkAddresses(
|
|
36
36
|
na =>
|
|
37
37
|
na.networkInterface.network === network &&
|
|
38
38
|
!na.networkInterface.isTemplate &&
|
package/package.json
CHANGED
package/src/services/kea.mjs
CHANGED
|
@@ -356,7 +356,7 @@ export class kea extends CoreService {
|
|
|
356
356
|
const hwmap = new Map();
|
|
357
357
|
const hostNames = new Set();
|
|
358
358
|
|
|
359
|
-
for
|
|
359
|
+
for (const { networkInterface } of source.networkAddresses()) {
|
|
360
360
|
if (networkInterface.hwaddr) {
|
|
361
361
|
if (!hostNames.has(networkInterface.hostName)) {
|
|
362
362
|
hwmap.set(networkInterface.hwaddr, networkInterface);
|