mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
48b99a2291
Differential Revision: https://phab.qa.fedoraproject.org/D1202
25 lines
785 B
Perl
25 lines
785 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self=shift;
|
|
# switch to TTY3 for both, graphical and console tests
|
|
$self->root_console(tty=>3);
|
|
# Check that journalctl DOESN'T output "No entries". This is also the case when journal files are missing.
|
|
# NOTE: We are quietly assuming that something was logged in journal in last 30 minutes. Should be boot log,
|
|
# switch to TTY3 etc.
|
|
assert_script_run '! journalctl -aeb --since "30 minutes ago" | grep "\-\- No entries \-\-" -q';
|
|
# if rsyslog package is installed (e. g. Server edition), /var/log/secure should exist and be nonempty
|
|
assert_script_run '(! rpm --quiet -q rsyslog) || [ -s /var/log/secure ]';
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|