From d05c5031ad4c528fe6bbfed289519edb9f13180a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 16 Jul 2012 12:34:54 +0200 Subject: unit: introduce %s specifier for the user shell --- src/core/unit.c | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'src/core/unit.c') diff --git a/src/core/unit.c b/src/core/unit.c index ed519b3bd5..673af13c3e 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2232,7 +2232,7 @@ static char *specifier_user_name(char specifier, void *data, void *userdata) { /* fish username from passwd */ username = s->exec_context.user; - r = get_user_creds(&username, NULL, NULL, NULL); + r = get_user_creds(&username, NULL, NULL, NULL, NULL); if (r < 0) return NULL; @@ -2256,13 +2256,37 @@ static char *specifier_user_home(char specifier, void *data, void *userdata) { } username = s->exec_context.user; - r = get_user_creds(&username, NULL, NULL, &home); + r = get_user_creds(&username, NULL, NULL, &home, NULL); if (r < 0) return NULL; return strdup(home); } +static char *specifier_user_shell(char specifier, void *data, void *userdata) { + Service *s = userdata; + int r; + const char *username, *shell; + + /* return HOME if set, otherwise from passwd */ + if (!s->exec_context.user) { + char *sh; + + r = get_shell(&sh); + if (r < 0) + return strdup("/bin/sh"); + + return sh; + } + + username = s->exec_context.user; + r = get_user_creds(&username, NULL, NULL, NULL, &shell); + if (r < 0) + return strdup("/bin/sh"); + + return strdup(shell); +} + char *unit_name_printf(Unit *u, const char* format) { /* @@ -2316,6 +2340,7 @@ char *unit_full_printf(Unit *u, const char *format) { { 't', specifier_runtime, NULL }, { 'u', specifier_user_name, NULL }, { 'h', specifier_user_home, NULL }, + { 's', specifier_user_shell, NULL }, { 0, NULL, NULL } }; -- cgit v1.2.3-54-g00ecf