]>
Commit | Line | Data |
---|---|---|
85f088ab LP |
1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
2 | #pragma once | |
3 | ||
69a283c5 | 4 | #include "forward.h" |
85f088ab LP |
5 | |
6 | /* This could be put together with CONF_PATHS_NULSTR, with the exception of the /run/host/ part in the | |
7 | * middle, which we use here, but not otherwise. */ | |
8 | #define USERDB_DROPIN_DIR_NULSTR(n) \ | |
9 | "/etc/" n "\0" \ | |
10 | "/run/" n "\0" \ | |
11 | "/run/host/" n "\0" \ | |
12 | "/usr/local/lib/" n "\0" \ | |
b0d3095f | 13 | "/usr/lib/" n "\0" |
85f088ab LP |
14 | |
15 | int dropin_user_record_by_name(const char *name, const char *path, UserDBFlags flags, UserRecord **ret); | |
16 | int dropin_user_record_by_uid(uid_t uid, const char *path, UserDBFlags flags, UserRecord **ret); | |
17 | ||
18 | int dropin_group_record_by_name(const char *name, const char *path, UserDBFlags flags, GroupRecord **ret); | |
19 | int dropin_group_record_by_gid(gid_t gid, const char *path, UserDBFlags flags, GroupRecord **ret); |