pmcf 2.35.0 → 2.35.1
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
package/src/service.mjs
CHANGED
|
@@ -10,11 +10,6 @@ import {
|
|
|
10
10
|
} from "./dns-utils.mjs";
|
|
11
11
|
|
|
12
12
|
const ServiceTypes = {
|
|
13
|
-
"systemd-resolved": { endpoints: [] },
|
|
14
|
-
"systemd-timesyncd": { endpoints: [] },
|
|
15
|
-
"systemd-journal": { endpoints: [] },
|
|
16
|
-
"systemd-journal-remote": { endpoints: [] },
|
|
17
|
-
"systemd-journal-upload": { endpoints: [] },
|
|
18
13
|
ntp: { endpoints: [{ protocol: "udp", port: 123, tls: false }] },
|
|
19
14
|
dns: { endpoints: [{ protocol: "udp", port: 53, tls: false }] },
|
|
20
15
|
ldap: { endpoints: [{ protocol: "tcp", port: 389, tls: false }] },
|
package/src/services/dns.mjs
CHANGED
|
@@ -221,7 +221,7 @@ export class DNSService extends ExtraSourceService {
|
|
|
221
221
|
};
|
|
222
222
|
|
|
223
223
|
const forwarders = serviceEndpoints(this.source, {
|
|
224
|
-
services: { type: "dns", priority: ">=
|
|
224
|
+
services: { type: "dns", priority: ">=20" },
|
|
225
225
|
select: e => e.address
|
|
226
226
|
});
|
|
227
227
|
|
package/src/services/ntp.mjs
CHANGED
|
@@ -52,7 +52,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
52
52
|
"Resolve",
|
|
53
53
|
{
|
|
54
54
|
DNS: serviceEndpoints(this, options("<10")),
|
|
55
|
-
FallbackDNS: serviceEndpoints(this, options(">=
|
|
55
|
+
FallbackDNS: serviceEndpoints(this, options(">=20")),
|
|
56
56
|
Domains: [...this.localDomains].join(" "),
|
|
57
57
|
DNSSEC: "no",
|
|
58
58
|
MulticastDNS: this.network.multicastDNS ? "yes" : "no",
|