diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-06-15 08:59:44 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-06-15 08:59:44 +0200 |
commit | 6b7d32add4733a83f86e18bb86f914037a6688b7 (patch) | |
tree | 650fb624eecbed6a5e88b850043b6cc821571dca /test | |
parent | 63432f5d9570b76a8efe82702d69611c20645530 (diff) |
sysv-generator test: always log to console
Set $SYSTEMD_LOG_TARGET so that the output always goes to stdout/stderr. This
fixes running the test as root, as that logged to the journal previously.
https://github.com/systemd/systemd/issues/195
Diffstat (limited to 'test')
-rw-r--r-- | test/sysv-generator-test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sysv-generator-test.py b/test/sysv-generator-test.py index e74f8533c7..af0493b9a8 100644 --- a/test/sysv-generator-test.py +++ b/test/sysv-generator-test.py @@ -60,6 +60,7 @@ class SysvGeneratorTest(unittest.TestCase): ''' env = os.environ.copy() env['SYSTEMD_LOG_LEVEL'] = 'debug' + env['SYSTEMD_LOG_TARGET'] = 'console' env['SYSTEMD_SYSVINIT_PATH'] = self.init_d_dir env['SYSTEMD_SYSVRCND_PATH'] = self.rcnd_dir env['SYSTEMD_UNIT_PATH'] = self.unit_dir |