diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2016-01-04 18:39:55 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2016-01-04 18:39:55 +0000 |
commit | 37453b3a2a68406c0b3c903e85fb1101fab67a44 (patch) | |
tree | 5d1b84081986fa030e87eecc0cc29d4d3c2b1a60 /src | |
parent | 2ce2cce3adf3698fe2ecb06e26f99e0695e046b5 (diff) |
core: don't enable special signals in test mode
Fixes:
$ systemd-analyze verify ...
Failed to open /dev/tty0: Permission denied
Diffstat (limited to 'src')
-rw-r--r-- | src/core/manager.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/manager.c b/src/core/manager.c index ffe27be743..711b0cdcee 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -380,6 +380,9 @@ static int enable_special_signals(Manager *m) { assert(m); + if (m->test_run) + return 0; + /* Enable that we get SIGINT on control-alt-del. In containers * this will fail with EPERM (older) or EINVAL (newer), so * ignore that. */ |