diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-04-04 13:11:49 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-04-04 13:11:49 +0200 |
commit | 214e37fc045e63b53a1be0f54d1d4d15ada7689c (patch) | |
tree | 822d272bf6c165a626758ec707d3b075b07e8c9f /src | |
parent | 2944758ccdeb0b86b39ebdcf753c364d8b2c2e18 (diff) | |
parent | f3ea87af4f88b94d346cf806778a9517eb80ae86 (diff) |
run: add colon before printing started units
run: add colon before printing started units
Diffstat (limited to 'src')
-rw-r--r-- | src/run/run.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/run/run.c b/src/run/run.c index 540a612fdf..f92a7f4e2e 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -878,7 +878,7 @@ static int start_transient_service( (void) sd_event_add_signal(event, NULL, SIGTERM, NULL, NULL); if (!arg_quiet) - log_info("Running as unit %s\nPress ^] three times within 1s to disconnect TTY.", service); + log_info("Running as unit: %s\nPress ^] three times within 1s to disconnect TTY.", service); r = pty_forward_new(event, master, PTY_FORWARD_IGNORE_INITIAL_VHANGUP, &forward); if (r < 0) @@ -896,7 +896,7 @@ static int start_transient_service( fputc('\n', stdout); } else if (!arg_quiet) - log_info("Running as unit %s", service); + log_info("Running as unit: %s", service); return 0; } @@ -1038,7 +1038,7 @@ static int start_transient_scope( return r; if (!arg_quiet) - log_info("Running scope as unit %s", scope); + log_info("Running scope as unit: %s", scope); execvpe(argv[0], argv, env); @@ -1189,9 +1189,9 @@ static int start_transient_timer( if (r < 0) return r; - log_info("Running timer as unit %s", timer); + log_info("Running timer as unit: %s", timer); if (argv[0]) - log_info("Will run service as unit %s", service); + log_info("Will run service as unit: %s", service); return 0; } |