journalctl no longer parses the flag "-bu"

This commit is contained in:
Eelco Dolstra 2014-04-17 10:56:10 +02:00
parent eeb32fd82b
commit f0a9703f77

View File

@ -495,7 +495,7 @@ sub waitForX {
my ($self, $regexp) = @_;
$self->nest("waiting for the X11 server", sub {
retry sub {
my ($status, $out) = $self->execute("journalctl -bu systemd-logind | grep Linked");
my ($status, $out) = $self->execute("journalctl -b -u systemd-logind | grep Linked");
return 0 if $status != 0;
($status, $out) = $self->execute("xwininfo -root > /dev/null 2>&1");
return 1 if $status == 0;