pmcf 2.53.5 → 2.53.7

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/README.md CHANGED
@@ -69,7 +69,7 @@ Type: ([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Glob
69
69
  * `options.endpoints` **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)?** filter for endpoints
70
70
  * `options.select` **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)?** mapper from Endpoint into result
71
71
  * `options.limit` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** upper limit of # result items
72
- * `options.join` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** jount result into a string
72
+ * `options.join` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** join result(s) into a string
73
73
 
74
74
  Returns **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | any)** 
75
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.53.5",
3
+ "version": "2.53.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -215,8 +215,11 @@ export class DHCPService extends Service {
215
215
  },
216
216
  "renew-timer": 900,
217
217
  "rebind-timer": 1800,
218
- "valid-lifetime": 3600,
218
+ "valid-lifetime": 86400,
219
219
  "hooks-libraries": [
220
+ {
221
+ library: "/usr/lib/kea/hooks/libdhcp_ddns_tuning.so"
222
+ },
220
223
  {
221
224
  library: "/usr/lib/kea/hooks/libdhcp_lease_cmds.so"
222
225
  },
@@ -306,11 +309,10 @@ export class DHCPService extends Service {
306
309
  "forward-ddns": {
307
310
  "ddns-domains": dnsServersSlot([...this.domains])
308
311
  },
309
- /*
310
312
  "reverse-ddns": {
311
- "ddns-domains": dnsSlot()
313
+ "ddns-domains": dnsServersSlot([...this.domains])
312
314
  },
313
- */
315
+
314
316
  loggers
315
317
  }
316
318
  };
@@ -343,7 +345,8 @@ export class DHCPService extends Service {
343
345
  "ip-address": networkInterface.networkAddress(
344
346
  n => n.family === "IPv4"
345
347
  ).address,
346
- hostname: networkInterface.hostName
348
+ hostname: networkInterface.hostName,
349
+ "client-classes": ["SKIP_DDNS"]
347
350
  };
348
351
  })
349
352
  .sort((a, b) => a.hostname.localeCompare(b.hostname));