diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-07-14 19:19:49 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-07-22 15:53:45 +0200 |
commit | 409093fe10685ed55915ef256f09cdf144b6528b (patch) | |
tree | a1cf99e3f7bece318f7c12e53c2703938d8a8178 /src/nss-systemd/nss-systemd.sym | |
parent | 6f3e79859d91aecb3a75097b69fb9cba086b2cb1 (diff) |
nss: add new "nss-systemd" NSS module for mapping dynamic users
With this NSS module all dynamic service users will be resolvable via NSS like
any real user.
Diffstat (limited to 'src/nss-systemd/nss-systemd.sym')
-rw-r--r-- | src/nss-systemd/nss-systemd.sym | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/nss-systemd/nss-systemd.sym b/src/nss-systemd/nss-systemd.sym new file mode 100644 index 0000000000..955078788a --- /dev/null +++ b/src/nss-systemd/nss-systemd.sym @@ -0,0 +1,17 @@ +/*** + This file is part of systemd. + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. +***/ + +{ +global: + _nss_systemd_getpwnam_r; + _nss_systemd_getpwuid_r; + _nss_systemd_getgrnam_r; + _nss_systemd_getgrgid_r; +local: *; +}; |