pmcf 1.73.2 → 1.73.3
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/dns.mjs +2 -2
- package/src/host.mjs +1 -3
- package/types/host.d.mts +10 -5
package/package.json
CHANGED
package/src/dns.mjs
CHANGED
|
@@ -211,7 +211,7 @@ async function generateZoneDefs(dns, targetDir) {
|
|
|
211
211
|
};
|
|
212
212
|
};
|
|
213
213
|
|
|
214
|
-
for
|
|
214
|
+
for (const mail of dns.owner.findServices({ type: "smtp" })) {
|
|
215
215
|
records.add(
|
|
216
216
|
createRecord("@", "MX", mail.priority, fullName(mail.owner.domainName))
|
|
217
217
|
);
|
|
@@ -228,7 +228,7 @@ async function generateZoneDefs(dns, targetDir) {
|
|
|
228
228
|
`(${updates})`
|
|
229
229
|
);
|
|
230
230
|
|
|
231
|
-
const NSRecord = createRecord("@", "NS", fullName(nameService.rawAddress));
|
|
231
|
+
const NSRecord = createRecord("@", "NS", fullName(nameService.rawAddress||nameService.domainName));
|
|
232
232
|
|
|
233
233
|
const zone = {
|
|
234
234
|
id: domain,
|
package/src/host.mjs
CHANGED
|
@@ -26,6 +26,7 @@ const HostTypeDefinition = {
|
|
|
26
26
|
owners: ["owner", "network", "root"],
|
|
27
27
|
extends: Base.typeDefinition,
|
|
28
28
|
properties: {
|
|
29
|
+
...networkAddressProperties,
|
|
29
30
|
networkInterfaces: {
|
|
30
31
|
type: "network_interface",
|
|
31
32
|
collection: true,
|
|
@@ -45,9 +46,6 @@ const HostTypeDefinition = {
|
|
|
45
46
|
depends: { type: "string", collection: true, writeable: true },
|
|
46
47
|
provides: { type: "string", collection: true, writeable: true },
|
|
47
48
|
extends: { type: "host", collection: true, writeable: true },
|
|
48
|
-
cidrAddresses: { type: "string", collection: true, writeable: false },
|
|
49
|
-
rawAddresses: { type: "string", collection: true, writeable: false },
|
|
50
|
-
rawAddress: { type: "string", collection: false, writeable: false },
|
|
51
49
|
model: { type: "string", collection: false, writeable: false },
|
|
52
50
|
isModel: { type: "boolean", collection: false, writeable: false }
|
|
53
51
|
}
|
package/types/host.d.mts
CHANGED
|
@@ -116,27 +116,32 @@ export class Host extends Base {
|
|
|
116
116
|
collection: boolean;
|
|
117
117
|
writeable: boolean;
|
|
118
118
|
};
|
|
119
|
-
|
|
119
|
+
model: {
|
|
120
120
|
type: string;
|
|
121
121
|
collection: boolean;
|
|
122
122
|
writeable: boolean;
|
|
123
123
|
};
|
|
124
|
-
|
|
124
|
+
isModel: {
|
|
125
125
|
type: string;
|
|
126
126
|
collection: boolean;
|
|
127
127
|
writeable: boolean;
|
|
128
128
|
};
|
|
129
|
-
|
|
129
|
+
cidrAddresses: {
|
|
130
130
|
type: string;
|
|
131
131
|
collection: boolean;
|
|
132
132
|
writeable: boolean;
|
|
133
133
|
};
|
|
134
|
-
|
|
134
|
+
cidrAddress: {
|
|
135
135
|
type: string;
|
|
136
136
|
collection: boolean;
|
|
137
137
|
writeable: boolean;
|
|
138
138
|
};
|
|
139
|
-
|
|
139
|
+
rawAddresses: {
|
|
140
|
+
type: string;
|
|
141
|
+
collection: boolean;
|
|
142
|
+
writeable: boolean;
|
|
143
|
+
};
|
|
144
|
+
rawAddress: {
|
|
140
145
|
type: string;
|
|
141
146
|
collection: boolean;
|
|
142
147
|
writeable: boolean;
|