This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pytest | |
| def merge_dict(a, b): | |
| for key in b: | |
| if key in a: | |
| if isinstance(a[key], dict) and isinstance(b[key], dict): | |
| merge_dict(a[key], b[key]) | |
| elif a[key] == b[key]: | |
| pass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| π Using config file: "/run/kanidm/server.toml" | |
| 00000000-0000-0000-0000-000000000000 INFO ο½ [info]: Starting Kanidmd | version: 1.7.4 | |
| 00000000-0000-0000-0000-000000000000 WARN π§ [warn]: This is running as uid == 0 (root) which may be a security risk. | |
| 00000000-0000-0000-0000-000000000000 WARN π§ [warn]: permissions on /run/kanidm/server.toml may not be secure. Should be readonly to running uid. This could be a security risk ... | |
| 00000000-0000-0000-0000-000000000000 WARN π§ [warn]: WARNING: /run/kanidm/server.toml has 'everyone' permission bits in the mode. This could be a security risk ... | |
| 00000000-0000-0000-0000-000000000000 WARN π§ [warn]: WARNING: /run/kanidm/server.toml owned by the current uid, which may allow file permission changes. This could be a security risk ... | |
| 00000000-0000-0000-0000-000000000000 WARN π§ [warn]: WARNING: DB folder /data has 'everyone' permission bits in the mode. This could be a security risk ... | |
| 00000000-0000-0000-0000-000000000000 DEBUG π [debug]: Acquired k |
OlderNewer