pmcf 2.71.4 → 2.71.5
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/services/chrony.mjs
CHANGED
|
@@ -27,7 +27,19 @@ const OpenLDAPServiceTypeDefinition = {
|
|
|
27
27
|
writeable: true
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
|
-
service: {
|
|
30
|
+
service: {
|
|
31
|
+
extends: ["ldap"],
|
|
32
|
+
services: {
|
|
33
|
+
"ldap": {
|
|
34
|
+
endpoints: [
|
|
35
|
+
{
|
|
36
|
+
family: "unix",
|
|
37
|
+
path: "/run/ldapi"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
31
43
|
};
|
|
32
44
|
|
|
33
45
|
export class OpenLDAPService extends Service {
|
|
@@ -268,7 +268,17 @@ export class OpenLDAPService extends Service {
|
|
|
268
268
|
writeable: boolean;
|
|
269
269
|
};
|
|
270
270
|
};
|
|
271
|
-
service: {
|
|
271
|
+
service: {
|
|
272
|
+
extends: string[];
|
|
273
|
+
services: {
|
|
274
|
+
ldap: {
|
|
275
|
+
endpoints: {
|
|
276
|
+
family: string;
|
|
277
|
+
path: string;
|
|
278
|
+
}[];
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
};
|
|
272
282
|
};
|
|
273
283
|
_baseDN: any;
|
|
274
284
|
_rootDN: any;
|