mirror of
https://github.com/systemd/systemd.git
synced 2025-02-04 21:47:31 +03:00
main: rename process on startup to 'systemd' to avoid confusion
This commit is contained in:
parent
d257ddef22
commit
f3b6a3edbc
10
src/main.c
10
src/main.c
@ -31,6 +31,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <sys/prctl.h>
|
||||||
|
|
||||||
#include "manager.h"
|
#include "manager.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
@ -896,6 +897,7 @@ int main(int argc, char *argv[]) {
|
|||||||
bool reexecute = false;
|
bool reexecute = false;
|
||||||
const char *shutdown_verb = NULL;
|
const char *shutdown_verb = NULL;
|
||||||
dual_timestamp initrd_timestamp = { 0ULL, 0ULL };
|
dual_timestamp initrd_timestamp = { 0ULL, 0ULL };
|
||||||
|
char systemd[] = "systemd";
|
||||||
|
|
||||||
if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
|
if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
|
||||||
/* This is compatbility support for SysV, where
|
/* This is compatbility support for SysV, where
|
||||||
@ -907,6 +909,14 @@ int main(int argc, char *argv[]) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If we get started via the /sbin/init symlink then we are
|
||||||
|
called 'init'. After a subsequent reexecution we are then
|
||||||
|
called 'systemd'. That is confusing, hence let's call us
|
||||||
|
systemd right-away. */
|
||||||
|
|
||||||
|
program_invocation_short_name = systemd;
|
||||||
|
prctl(PR_SET_NAME, systemd);
|
||||||
|
|
||||||
log_show_color(isatty(STDERR_FILENO) > 0);
|
log_show_color(isatty(STDERR_FILENO) > 0);
|
||||||
log_show_location(false);
|
log_show_location(false);
|
||||||
log_set_max_level(LOG_INFO);
|
log_set_max_level(LOG_INFO);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user