
18 Oct
2017
18 Oct
'17
6:24 a.m.
commit bfdc5bc5aecceb8ec713562f36134e6ec64cc845 Author: Nicolas Vigier <boklm@torproject.org> Date: Wed Oct 11 00:53:00 2017 +0200 Bug 23812: fix parsing of runc spec version --- rbm.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rbm.conf b/rbm.conf index c433f00..6b5fc3e 100644 --- a/rbm.conf +++ b/rbm.conf @@ -383,7 +383,7 @@ ENV: # We will need to update this when there is a new spec version available runc_spec100 => sub { my ($out) = capture_exec('sudo', 'runc', '--version'); - return $out =~ m/^runc version spec: 1\.0\.0$/; + return $out =~ m/^spec: 1\.0\.0$/m; }, }, )