pmcf 3.4.2 → 3.4.4
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 +4 -4
package/package.json
CHANGED
package/src/services/bind.mjs
CHANGED
|
@@ -36,7 +36,6 @@ const BindServiceTypeDefinition = {
|
|
|
36
36
|
collection: true,
|
|
37
37
|
writable: true
|
|
38
38
|
},
|
|
39
|
-
|
|
40
39
|
trusted: {
|
|
41
40
|
type: address_types,
|
|
42
41
|
collection: true,
|
|
@@ -46,7 +45,7 @@ const BindServiceTypeDefinition = {
|
|
|
46
45
|
internal: { type: address_types, collection: true, writable: true },
|
|
47
46
|
hasSVRRecords: boolean_attribute_writeable_false,
|
|
48
47
|
hasCatalog: boolean_attribute_writeable_true,
|
|
49
|
-
hasLinkLocalAdresses:
|
|
48
|
+
hasLinkLocalAdresses: boolean_attribute_writeable_false,
|
|
50
49
|
hasLocationRecord: boolean_attribute_writeable_true,
|
|
51
50
|
excludeInterfaceKinds: {
|
|
52
51
|
...string_collection_attribute,
|
|
@@ -296,9 +295,10 @@ export class BindService extends ExtraSourceService {
|
|
|
296
295
|
|
|
297
296
|
packageData.dir = outfacingZonesPackageDir;
|
|
298
297
|
packageData.properties = {
|
|
299
|
-
name: `named-zones-${name}-
|
|
298
|
+
name: `named-zones-${name}-outfacing`,
|
|
300
299
|
description: `outfacing zone definitions for ${names}`,
|
|
301
300
|
access: "private",
|
|
301
|
+
replaces: [`named-zones-${name}-OUTFACING`],
|
|
302
302
|
hooks: {}
|
|
303
303
|
};
|
|
304
304
|
|
|
@@ -495,7 +495,7 @@ export class BindService extends ExtraSourceService {
|
|
|
495
495
|
|
|
496
496
|
const zone = {
|
|
497
497
|
id: domain,
|
|
498
|
-
file: `
|
|
498
|
+
file: `outfacing/${domain}.zone`,
|
|
499
499
|
records: new Set(records)
|
|
500
500
|
};
|
|
501
501
|
const config = {
|