Fix nixos test driver startJob function. It was stopping the job before.

This commit is contained in:
Rob Vermaas 2013-03-20 20:45:43 +01:00
parent ef28e8e70e
commit 960bb2bcd3

View file

@ -398,7 +398,7 @@ sub waitForFile {
sub startJob {
my ($self, $jobName) = @_;
$self->execute("systemctl stop $jobName");
$self->execute("systemctl start $jobName");
# FIXME: check result
}