diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-10-15 19:15:11 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-10-16 18:44:47 +0000 |
commit | c2bbd90b5a60cfba87cee98fa4ad66de73036801 (patch) | |
tree | 62f8da86c841ce6d1a94294c1d70056238c1095a /src/core | |
parent | f10dc5a72587cb35ef8e4f1babcb274ccb4afd45 (diff) |
core: dump RuntimeDirectories and RuntimeDirectoryMode too
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/execute.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index d6217840c0..51efb7c215 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -2314,7 +2314,7 @@ static void strv_fprintf(FILE *f, char **l) { } void exec_context_dump(ExecContext *c, FILE* f, const char *prefix) { - char **e; + char **e, **d; unsigned i; assert(c); @@ -2350,6 +2350,11 @@ void exec_context_dump(ExecContext *c, FILE* f, const char *prefix) { STRV_FOREACH(e, c->environment_files) fprintf(f, "%sEnvironmentFile: %s\n", prefix, *e); + fprintf(f, "%sRuntimeDirectoryMode: %04o\n", prefix, c->runtime_directory_mode); + + STRV_FOREACH(d, c->runtime_directory) + fprintf(f, "%sRuntimeDirectory: %s\n", prefix, *d); + if (c->nice_set) fprintf(f, "%sNice: %i\n", |