pmcf 3.17.1 → 3.18.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.17.1",
3
+ "version": "3.18.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -14,6 +14,7 @@ const SystemdResolvedServiceTypeDefinition = {
14
14
  owners: ServiceTypeDefinition.owners,
15
15
  key: "name",
16
16
  attributes: {
17
+ dnssec: boolean_attribute_writable,
17
18
  llmnr: boolean_attribute_writable
18
19
  }
19
20
  };
@@ -58,7 +59,7 @@ export class SystemdResolvedService extends ExtraSourceService {
58
59
  DNS: serviceEndpoints(this, options(300, 399, 4)),
59
60
  FallbackDNS: serviceEndpoints(this, options(100, 199, 4)),
60
61
  Domains: [...this.localDomains].join(" "),
61
- DNSSEC: "no",
62
+ DNSSEC: yesno(this.dnssec),
62
63
  MulticastDNS: yesno(this.network.multicastDNS),
63
64
  LLMNR: yesno(this.llmnr)
64
65
  }
@@ -1085,6 +1085,7 @@ export class SystemdResolvedService extends ExtraSourceService {
1085
1085
  })[];
1086
1086
  key: string;
1087
1087
  attributes: {
1088
+ dnssec: import("pacc").AttributeDefinition;
1088
1089
  llmnr: import("pacc").AttributeDefinition;
1089
1090
  };
1090
1091
  };