pmcf 2.11.5 → 2.12.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 +1 -1
- package/src/services/ntp.mjs +8 -1
- package/types/services/ntp.d.mts +8 -1
package/package.json
CHANGED
package/src/services/ntp.mjs
CHANGED
|
@@ -14,7 +14,14 @@ const NTPServiceTypeDefinition = {
|
|
|
14
14
|
owners: ServiceTypeDefinition.owners,
|
|
15
15
|
extends: ExtraSourceServiceTypeDefinition,
|
|
16
16
|
priority: 0.1,
|
|
17
|
-
properties: {
|
|
17
|
+
properties: {
|
|
18
|
+
isPool: {
|
|
19
|
+
type: "boolean",
|
|
20
|
+
collection: false,
|
|
21
|
+
writeable: true,
|
|
22
|
+
default: false
|
|
23
|
+
}
|
|
24
|
+
}
|
|
18
25
|
};
|
|
19
26
|
|
|
20
27
|
const NTP_SERVICE_FILTER = { type: NTPServiceTypeDefinition.name };
|
package/types/services/ntp.d.mts
CHANGED
|
@@ -263,7 +263,14 @@ export class NTPService extends ExtraSourceService {
|
|
|
263
263
|
};
|
|
264
264
|
};
|
|
265
265
|
priority: number;
|
|
266
|
-
properties: {
|
|
266
|
+
properties: {
|
|
267
|
+
isPool: {
|
|
268
|
+
type: string;
|
|
269
|
+
collection: boolean;
|
|
270
|
+
writeable: boolean;
|
|
271
|
+
default: boolean;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
267
274
|
};
|
|
268
275
|
get systemdConfig(): (string | {
|
|
269
276
|
NTP: string;
|