mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 14:23:19 +00:00
Fix nixos test driver startJob function. It was stopping the job before.
This commit is contained in:
parent
ef28e8e70e
commit
960bb2bcd3
@ -398,7 +398,7 @@ sub waitForFile {
|
|||||||
|
|
||||||
sub startJob {
|
sub startJob {
|
||||||
my ($self, $jobName) = @_;
|
my ($self, $jobName) = @_;
|
||||||
$self->execute("systemctl stop $jobName");
|
$self->execute("systemctl start $jobName");
|
||||||
# FIXME: check result
|
# FIXME: check result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user