summaryrefslogtreecommitdiff
path: root/src/shared/install-printf.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-11-21 17:57:56 +0100
committerLennart Poettering <lennart@poettering.net>2017-11-29 12:32:56 +0100
commit36444d2213e7a3c5d23e0c4a04e90ee4e8c11a2e (patch)
tree88711abcd8d8d947b4073e489671942ddd873c25 /src/shared/install-printf.c
parente82f30d17f3dd8d4209b8eec3c0c6ab529e9c182 (diff)
downloadsystemd-36444d2213e7a3c5d23e0c4a04e90ee4e8c11a2e.tar.gz
specifier: unify specifier implementations for user-related specifiers
The code in install-printf.c and unit-printf.c for these is pretty much the same and very generic. Let's move this all over to the generic specifier.c, and share the implementations.
Diffstat (limited to 'src/shared/install-printf.c')
-rw-r--r--src/shared/install-printf.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/shared/install-printf.c b/src/shared/install-printf.c
index f8d0e53eca..aaab2e6665 100644
--- a/src/shared/install-printf.c
+++ b/src/shared/install-printf.c
@@ -103,34 +103,6 @@ static int specifier_instance(char specifier, void *data, void *userdata, char *
return 0;
}
-static int specifier_user_name(char specifier, void *data, void *userdata, char **ret) {
- char *t;
-
- /* If we are UID 0 (root), this will not result in NSS,
- * otherwise it might. This is good, as we want to be able to
- * run this in PID 1, where our user ID is 0, but where NSS
- * lookups are not allowed.
-
- * We don't user getusername_malloc() here, because we don't want to look
- * at $USER, to remain consistent with specifer_user_id() below.
- */
-
- t = uid_to_name(getuid());
- if (!t)
- return -ENOMEM;
-
- *ret = t;
- return 0;
-}
-
-static int specifier_user_id(char specifier, void *data, void *userdata, char **ret) {
-
- if (asprintf(ret, UID_FMT, getuid()) < 0)
- return -ENOMEM;
-
- return 0;
-}
-
int install_full_printf(UnitFileInstallInfo *i, const char *format, char **ret) {
/* This is similar to unit_full_printf() but does not support